- Install dependencies:
npm install- Start dev server:
npm run start- Generate a database migration file and apply it to the database:
npx prisma migrate dev- Push the Prisma schema state to the database:
npx prisma db push- Update the Prisma client library:
npx prisma generate- Seed the database with initial data:
npx prisma db seedMIT