Table of Contents
It is recommended to use nvm to install the correct version of node.
nvm useAfter that, install the dependencies:
yarn install
yarn db:generateyarn docker:dev:up
yarn devyarn docker:upto see the logs:
yarn docker:logs [server|proxy|mongo]to stop the containers:
yarn docker:downIf 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