feat: add docker ignore
This commit is contained in:
parent
bb15bfef28
commit
8b68d8a5cf
|
|
@ -0,0 +1,79 @@
|
|||
# Dependencies
|
||||
node_modules
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Build outputs
|
||||
dist
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.docker
|
||||
|
||||
# IDE files
|
||||
.vscode
|
||||
.idea
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS generated files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Coverage directory
|
||||
coverage
|
||||
*.lcov
|
||||
.nyc_output
|
||||
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# Docker
|
||||
Dockerfile*
|
||||
docker-compose*
|
||||
.dockerignore
|
||||
|
||||
# Data directories (will be mounted as volumes)
|
||||
data
|
||||
uploads
|
||||
results
|
||||
|
||||
# Temporary files
|
||||
temp
|
||||
tmp
|
||||
|
||||
# Test files
|
||||
tests
|
||||
test-*.sh
|
||||
|
||||
# Documentation
|
||||
README.md
|
||||
docs
|
||||
infrastructure.md
|
||||
|
||||
# Other
|
||||
.claude
|
||||
.mcp.json
|
||||
Loading…
Reference in New Issue