removed backend part

This commit is contained in:
Fedor Katurov 2020-03-20 17:11:36 +07:00
parent 97fe205e5f
commit 75f76e473b

View file

@ -35,10 +35,3 @@ Configs are placed in ```./config/frontend.js```
For development launch ```npm start``` and visit ```http://localhost:8000/``` For development launch ```npm start``` and visit ```http://localhost:8000/```
For production launch ```npm build```, the output will be placed at ```./dist``` folder, you should configure your http server to serve index html from that folder. For production launch ```npm build```, the output will be placed at ```./dist``` folder, you should configure your http server to serve index html from that folder.
### Backend
Take a look at ```./config/backend.js```. By default your api server will be spawned at ```http://localhost:3000/```
For development launch ```npm serve-dev```, it will launch dev server, reloading on every code update
For production launch ```npm serve``` and make it running in background by any desirable way, such as ```forever```