updated readme
This commit is contained in:
parent
652a2c3728
commit
a99bbecf4b
2 changed files with 8 additions and 9 deletions
15
README.md
15
README.md
|
@ -39,19 +39,18 @@ Install node dependencies
|
|||
$ npm install
|
||||
```
|
||||
|
||||
create config file
|
||||
Create the config files using the built in CLI
|
||||
```
|
||||
$ 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
|
||||
```
|
||||
$ npm run bundle
|
||||
```
|
||||
start the sever
|
||||
|
||||
start the app
|
||||
```
|
||||
$ npm run start
|
||||
```
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"lint": "eslint .",
|
||||
"precommit": "eslint .",
|
||||
"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:dev": "nodemon server.js",
|
||||
"test": "mocha --recursive",
|
||||
|
|
Loading…
Reference in a new issue