Table of Contents
It is recommended to use nvm to install the correct version of node.
nvm use
After that, install the dependencies:
yarn install
yarn db:generate
yarn docker:dev:up
yarn dev
yarn docker:up
to see the logs:
yarn docker:logs [server|proxy|mongo]
to stop the containers:
yarn docker:down
If you are using Docker to run the app, you must be aware that in case of adding a new dependency or changing the DB schema (with Prisma), you must rebuild the image. You can do that by running the following command:
yarn docker:down
yarn docker:build