- NVM to set up the node version used by the app.
 - Yarn to manage node dependencies.
 - Docker Compose to run backing services.
 
- Install node dependencies.
- Run 
nvm useto configure the node version used by the app. - Run 
yarn installto install all node dependencies. 
 - Run 
 - Generate or copy .env files
Do so on the 
rootandprismafolders following the structure of bothexample.envfiles. - Set up the database and run schema migrations.
- Run 
docker-compose up -dto bring up the database. - Run 
npx prisma db pushto run all schema migrations. - Run 
npx prisma db seedto seed the db. 
 - Run 
 
- Run 
nvm useto configure the node version used by the app. - Run 
docker-compose up -dto bring up the backing services. - Run 
yarn devto start the app at http://localhost:3000.