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
|
$ 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
|
||||||
```
|
```
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Add table
Reference in a new issue