docs: add missing Prisma generate step to setup instructions

Updated the README to include `prisma generate` in the database setup steps. 
This ensures the Prisma client is generated before running the seed command, preventing module resolution errors during initial setup.
This commit is contained in:
avosa 2026-04-17 15:50:41 -04:00 committed by GitHub
parent cb981f6302
commit a6b469ad1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,6 +64,7 @@ e2e/ - Playwright E2E tests
```bash
cd server
bunx prisma migrate dev
bunx prisma generate
bunx prisma db seed
```