25 lines
339 B
Markdown
25 lines
339 B
Markdown
|
|
# Freeplanet_serverside
|
||
|
|
|
||
|
|
A Node JS
|
||
|
|
|
||
|
|
## Install the dependencies
|
||
|
|
```bash
|
||
|
|
yarn
|
||
|
|
```
|
||
|
|
|
||
|
|
### Start the app in development mode (hot-code reloading, error reporting, etc.)
|
||
|
|
```bash
|
||
|
|
node src/server/server.js
|
||
|
|
```
|
||
|
|
|
||
|
|
### Build the test ambient
|
||
|
|
```bash
|
||
|
|
./deploynodejs_on_test.js
|
||
|
|
```
|
||
|
|
|
||
|
|
### Build the production
|
||
|
|
```bash
|
||
|
|
./deploynodejs_on_production.js
|
||
|
|
```
|
||
|
|
|