Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Fix 'start:watch' script invocation in README file #123

Merged
merged 2 commits into from
Aug 24, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ If you have a specific issue or bug, please file a Github issue. If you want to

#### Starting the Server
1. Run `npm install --production`.
2. Run `npm start:production`.
2. Run `npm run start:production`.
3. Access the UI in your browser. Defaults to `localhost:3000`.
* You may change the default port in `config.js`.
4. Upon loading the UI the first time, you will be prompted to create a user account.
Expand All @@ -36,7 +36,7 @@ If you have a specific issue or bug, please file a Github issue. If you want to
2. Check `config.template.js` for configuration changes that you may wish to incoporate in your `config.js`.
3. Kill the running Node server.
4. Run `npm install --production` to update dependencies.
5. Restart it with `npm start:production`.
5. Restart it with `npm run start:production`.
* Static client-side assets are transpiled and compressed before starting the server.

#### Tips
Expand All @@ -45,10 +45,10 @@ If you have a specific issue or bug, please file a Github issue. If you want to

#### Local Development
1. Run `npm install`.
2. Run `npm start` and `npm start:watch` in separate terminal instances.
2. Run `npm start` and `npm run start:watch` in separate terminal instances.
3. Access the UI through the [browser-sync](https://www.browsersync.io/) proxy at [localhost:4200](http://localhost:4200).
* `npm start` uses [nodemon](https://github.com/remy/nodemon) to watch for changes to the server-side JavaScript.
* `npm start:watch` watches for changes in the client-side source..
* `npm run start:watch` watches for changes in the client-side source..

# Screenshots
![](https://s3.amazonaws.com/johnfurrow.com/share/flood-screenshot-a-0606.png)
Expand Down