Make sure that docker and docker-compose are installed on your computer
Run frontend and backend servers in containers with command:
docker-compose up -d
Run app in containers and rebuild images:
docker-compose up -d --build
frontend http://localhost:3000 backend http://localhost:3000/api/
docker-compose -f docker-compose.yml up -d --build
This project needs a file .env with environment variables which has to be excluded from source control:
MONGO_USERNAME=dbUserName
MONGO_PASSWORD=you_password
MONGO_PORT=27017
MONGO_DB=dbName