From a6b469ad1b51333ea539f1c0a2c11b21aa31ecb6 Mon Sep 17 00:00:00 2001 From: avosa Date: Fri, 17 Apr 2026 15:50:41 -0400 Subject: [PATCH] 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. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 747a6a2..82409d7 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,7 @@ e2e/ - Playwright E2E tests ```bash cd server bunx prisma migrate dev + bunx prisma generate bunx prisma db seed ```