Steps to set up the app on development mode
-
Install the node dependencies
npm install
-
Run the database
docker compose up -d
-
Create a copy of the .env.template file and rename it to .env
-
Replace the env variables
-
Do the prisma setup
-
Execute the SEED for data generation
http://localhost:3000/api/seed
email: test@test.com
password: 123456
npx prisma init
npx prisma migrate dev
npx prisma generate