Install requirements
yarn installCopy env file
cp .env.example .envStart PostgreSQL DB
docker-compose up If you want to load the Dump file:
Connect to PostgreSQL docker container
docker exec -it ID bashLoad Dump File
psql -U DB_USERNAME -d DB_NAME < dataDump.sqlIf you dont want to load the dump file:
Migrate DB
npx prisma migrate devStart node application
npx nodemon