- Install dependecies
npm install
- Run the migrations
npx prisma migrate dev
(ornpx prisma migrate deploy
) - Optional, run the seeders:
To run the seeders you need to add
"type": "module"
to package.json, and then runnpx prisma db seed
, remove the same line from package.json after. - Start the application
npm run dev