- Install dependencies:
npm install
npm install --target_arch=x64 # For Apple M1 machines
- Create
.envwith secrets for Database connections - Run dev mode:
npm run dev
npx prisma generate # if you encounter errors with Prisma client
- Install Prisma extension
F1->Tasks: Run Build Taskto runtsc --watchin the background and show all errors in the VS CodeProblemspanel
- Always format
schema.prismawithnpx prisma format
- For small changes, push directly.
- For larger features, open an PR and request reviews from others.
- Do the merge yourself upon approval.
- If there's no response, you can still merge. The PR is still useful as a container of changes for others to read through.