updated readme

This commit is contained in:
bill bittner 2018-08-01 11:49:02 -07:00
parent 652a2c3728
commit a99bbecf4b
2 changed files with 8 additions and 9 deletions

View file

@ -39,19 +39,18 @@ Install node dependencies
$ npm install $ npm install
``` ```
create config file Create the config files using the built in CLI
``` ```
$ npm run configure $ npm run configure
``` ```
build from source code
Build the app
(transpile source with babel and bundle with webpack)
``` ```
$ npm run transpile $ npm run build
``` ```
create client bundle with webpack
``` start the app
$ npm run bundle
```
start the sever
``` ```
$ npm run start $ npm run start
``` ```

View file

@ -13,7 +13,7 @@
"lint": "eslint .", "lint": "eslint .",
"precommit": "eslint .", "precommit": "eslint .",
"start": "npm run server", "start": "npm run server",
"start:dev": "builder concurrent transpile:dev bundle:dev bundle:dev", "start:dev": "builder concurrent transpile:dev bundle:dev server:dev",
"server": "node server.js", "server": "node server.js",
"server:dev": "nodemon server.js", "server:dev": "nodemon server.js",
"test": "mocha --recursive", "test": "mocha --recursive",