-
get docker <-- download available on their webside
-
copy and rename the file config/default.json.const to config/default.json and enter your websettings
-
enter the following command in the project folder
$ docker-compose up
-
get node.js <-- click for more information on how to obtain it
-
get mongodb <-- click for more information on how to obtain it
-
open the repository folder in IDEA WebStorm/PHPStorm or run the following command in the repository folder to install all packages from the package.json file
$ npm install
-
copy and rename the file config/default.json.const to config/default.json and enter your websettings
-
check the mongodb.connectionstring in config/default.json because the local mongo service runs on localhost (127.0.0.1) not on a docker container called "mongo"
-
look up whether mongodb service is running or not / start mondodb service
$ mongod
-
Start the webserver on localhost
$ npm start