First, change the .env.example to .env and set the variables and then run the development server:
Using Docker
npm run migrate
Docker compose up --buildOR
setup postgres in your machine and then
To connect to pg server or after any change in the prisma.schema file
npx prisma migrate dev --name init --skip-seed
npx prisma db pushnpm i
npm run devOpen http://localhost:3000 with your browser to see the result.