39 lines
403 B
Plaintext
39 lines
403 B
Plaintext
# Node
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Next.js
|
|
.next
|
|
coverage
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Deployment
|
|
/deployment
|
|
|
|
# Prisma (DB file itself should not be baked into image; mounted via volume)
|
|
prisma/*.db
|
|
prisma/*.db-journal
|
|
|
|
# Scripts (not needed in image)
|
|
scripts/
|