Merge pull request #284 from Badley187/patch-1

fixed updater
This commit is contained in:
Cronick 2016-10-15 18:48:00 +02:00 committed by GitHub
commit 0f73b8805e
2 changed files with 3 additions and 1 deletions

View File

@ -60,6 +60,8 @@ You need at minimum [Node.js](https://nodejs.org/en/) version 6.x.
Open up a terminal and enter ``npm run boot`` to start the server or ``npm run api`` to start the web-api.
To Update the Server enter ``npm run update``
## Docker setup
1. Download ``Dockerfile``, ``cfg.js.example`` and ``supervisord.conf`` from github.

View File

@ -11,7 +11,7 @@
"babel-node": "babel-node --presets=es2015",
"boot": "npm run babel-node -- ./src/index.js",
"api": "npm run babel-node -- ./api/index.js",
"update": "npm run babel-node -- ./update.js"
"update": "npm run babel-node -- ./updater.js"
},
"engines": {
"node": ">= 6.x",