49 lines
683 B
Plaintext
49 lines
683 B
Plaintext
# Ignore node_modules (already installed in the container)
|
|
node_modules/
|
|
|
|
# Ignore Next.js build output
|
|
.next/
|
|
out/
|
|
|
|
# Ignore Git-related files
|
|
.git/
|
|
.gitignore
|
|
|
|
# Ignore environment files (sensitive data)
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env*.local
|
|
|
|
# Ignore build artifacts and caches
|
|
.cache/
|
|
|
|
# Ignore logs and temporary files
|
|
logs/
|
|
*.log
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Ignore editor-specific files
|
|
.vscode/
|
|
.idea/
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.swp
|
|
|
|
# Ignore OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore TypeScript build info
|
|
*.tsbuildinfo
|
|
|
|
# Ignore coverage reports
|
|
coverage/
|
|
|
|
# Ignore Docker-related files (optional, since they're small)
|
|
# Dockerfile
|
|
# docker-compose.yml |