From 9ba3f729cfcfbfe68dc1cfc666031db134388741 Mon Sep 17 00:00:00 2001 From: Andrew Sliwinski Date: Wed, 2 Sep 2015 14:59:31 -0700 Subject: [PATCH] Avoid port conflict with vagrant and clarify readme --- Makefile | 6 ++---- README.md | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e198ba927..22499ed69 100644 --- a/Makefile +++ b/Makefile @@ -35,14 +35,12 @@ lint: # ------------------------------------ start: - $(LIVE) ./build & - make watch & - wait + @make watch + $(LIVE) ./build --port=8888 --wait=200 --no-browser watch: $(WEBPACK) -d --watch & $(WATCH) "make static" ./static & - $(WATCH) "make lint" ./src & wait # ------------------------------------ diff --git a/README.md b/README.md index 6ebf45bc0..99b875934 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,8 @@ npm install npm start ``` +Once running, open `http://localhost:8888` in your browser. Any update you make to files in either `./static` or `./src` should trigger a rebuild of the project and cause your browser to refresh to reflect those changes. + ### To Test ```bash npm test