Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 472 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 472 Bytes

Backend

Run the whole project with docker

docker-compose up

Run backend locally

For developement, run the mongo docker and redis container and then run yarn start in the api folder:

yarn start:services
yarn start

Then run the express server:

yarn start

To access the database

docker exec -it mongo bash

Then start the mongo shell:

# mongo
> show dbs

To stop mongo and redis

yarn run stop:services