60 lines
568 B
Plaintext
60 lines
568 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnpm-store
|
|
|
|
# Next.js
|
|
.next
|
|
out
|
|
build
|
|
dist
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Prisma
|
|
/lib/generated/prisma
|
|
prisma/*.db
|
|
prisma/*.db-journal
|
|
prisma/backups
|
|
prisma/password.json
|
|
|
|
# Database files
|
|
*.db
|
|
*.db-journal
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Cursor
|
|
.cursor
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# Misc
|
|
*.log
|
|
*.local
|
|
Thumbs.db
|