61 lines
589 B
Plaintext
61 lines
589 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Next.js
|
|
.next/
|
|
out/
|
|
|
|
# Build
|
|
dist/
|
|
build/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Docker env (contains secrets on server - never commit)
|
|
docker/.env
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Prisma
|
|
prisma/*.db
|
|
prisma/*.db-journal
|
|
|
|
# Testing
|
|
coverage/
|
|
|
|
# Playwright MCP screenshots
|
|
.playwright-mcp/
|
|
|
|
# Output files
|
|
*-output.txt
|
|
build-output.txt
|
|
|
|
# Misc
|
|
*.log
|
|
.vercel
|