Normally just run `start:dev` to start both normal http and ssr environment, and then:
- Go `localhost:4000` for normal http environment.
- Go `localhost:5000` for SSR-enabled environment.
Ports setting is stored in `build/build-config.js`.
## Production
Run `build-all` to files for production.
Then,
- Send your static files which are located in `dist/` to your (CDN) server.
- If you want to host a SSR server, the simplest way is to send the whole project to somewhere and run `start:prod`. But you can also build service by your own, just transfer vue-bundle-json files under `dist/` to your location and setup your API Gateway.