83 lines
912 B
Text
83 lines
912 B
Text
|
|
# Docker ignore file for Claude Code Proxy
|
||
|
|
# Excludes unnecessary files from Docker build context
|
||
|
|
|
||
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
.gitattributes
|
||
|
|
|
||
|
|
# Docker
|
||
|
|
Dockerfile
|
||
|
|
.dockerignore
|
||
|
|
docker-compose*.yml
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
README.md
|
||
|
|
*.md
|
||
|
|
demo.gif
|
||
|
|
|
||
|
|
# Environment and config
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
.env.example
|
||
|
|
|
||
|
|
# Build artifacts
|
||
|
|
bin/
|
||
|
|
build/
|
||
|
|
dist/
|
||
|
|
target/
|
||
|
|
|
||
|
|
# Dependencies
|
||
|
|
node_modules/
|
||
|
|
vendor/
|
||
|
|
|
||
|
|
# Cache and temporary files
|
||
|
|
.cache/
|
||
|
|
.temp/
|
||
|
|
.tmp/
|
||
|
|
*.tmp
|
||
|
|
*.log
|
||
|
|
|
||
|
|
# IDE and editor files
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# OS generated files
|
||
|
|
.DS_Store
|
||
|
|
.DS_Store?
|
||
|
|
._*
|
||
|
|
.Spotlight-V100
|
||
|
|
.Trashes
|
||
|
|
ehthumbs.db
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Database files (will be created in container)
|
||
|
|
*.db
|
||
|
|
*.sqlite
|
||
|
|
*.sqlite3
|
||
|
|
requests/
|
||
|
|
|
||
|
|
# Web specific
|
||
|
|
web/.cache/
|
||
|
|
web/build/
|
||
|
|
web/dist/
|
||
|
|
web/node_modules/
|
||
|
|
web/npm-debug.log*
|
||
|
|
web/yarn-debug.log*
|
||
|
|
web/yarn-error.log*
|
||
|
|
|
||
|
|
# Go specific
|
||
|
|
proxy/vendor/
|
||
|
|
*.test
|
||
|
|
*.prof
|
||
|
|
coverage.txt
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
logs/
|
||
|
|
*.log
|
||
|
|
npm-debug.log*
|
||
|
|
yarn-debug.log*
|
||
|
|
yarn-error.log*
|