First, make sure that the environment variables for the Postgres database are inside src/.env.
To generate Typescript types from the Prisma schema run:
cd src
pnpx prisma generateTo run the dev server run:
cd src
pnpm devTo seed the database run:
npx prisma db seedWarning
Do not run pnpx prisma db seed because it doesn't work pnpm/pnpm#6464. Use npx!
To build the app run:
cd src
pnpm buildTo run the tests, run the dev server on port 3000 and then run:
pnpm test