Join our community: https://t.me/+DOylgFv1jyJlNzM0
Why this matters
backend/prisma.config.ts configures the Prisma CLI (e.g. seed command, schema path) separately from backend/prisma/schema.prisma. Newer Prisma versions moved some config here, but nothing in backend/README.md or docs/DEVELOPMENT.md mentions this file, so a contributor debugging a prisma generate/migrate quirk has no pointer to check it.
Acceptance criteria
Files to touch
backend/README.md
docs/DEVELOPMENT.md
Out of scope
- Changing the Prisma config itself
- Migrating to a different config format
Why this matters
backend/prisma.config.tsconfigures the Prisma CLI (e.g. seed command, schema path) separately frombackend/prisma/schema.prisma. Newer Prisma versions moved some config here, but nothing inbackend/README.mdordocs/DEVELOPMENT.mdmentions this file, so a contributor debugging aprisma generate/migratequirk has no pointer to check it.Acceptance criteria
backend/README.mdexplaining whatprisma.config.tscontrols and why it exists alongsideschema.prismadocs/DEVELOPMENT.md's database setup sectionFiles to touch
backend/README.mddocs/DEVELOPMENT.mdOut of scope