- Install Docker and Docker Compose
- Run
$ docker-compose up --build
- Go to
http://localhost:3000/
- Install postgres:
$ sudo apt-get update
$ sudo apt-get install postgresql postgresql-contrib
- Create database (replace dbname with used database):
$ psql -U postgres -h localhost
$ postgres=# CREATE DATABASE dbname;
- Install the node packages via:
$ npm install
To start the application (server and client) run:
npm start
For running the test suit run:
npm test