mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-05-10 22:01:16 +00:00
The migration_lock.toml was excluded by a gitignore pattern (prisma/migrations/**/migration_lock.toml) which caused `prisma migrate deploy` to fail in CI with no lock file present. Prisma requires this file to be version-controlled. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
535 B
Plaintext
51 lines
535 B
Plaintext
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# env files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# prisma — generated client (regenerated by `prisma generate`)
|
|
/src/generated/prisma
|
|
|
|
# ide
|
|
.idea
|
|
.vscode
|