76 lines
836 B
Text
76 lines
836 B
Text
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Docker volumes and data
|
|
docker/volumes/
|
|
docker/data/
|
|
docker/tmp/
|
|
|
|
# Node modules (if used)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Python virtual environments
|
|
venv/
|
|
env/
|
|
.env/
|
|
.venv/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Cache and temporary files
|
|
.cache/
|
|
.tmp/
|
|
temp/
|
|
tmp/
|
|
|
|
# Docker build cache
|
|
.docker/
|
|
|
|
# Local configuration overrides
|
|
docker-compose.override.yml
|
|
|
|
# Hugging Face cache (if downloaded locally)
|
|
.huggingface/
|
|
|
|
# Model files (large binary files)
|
|
*.gguf
|
|
*.bin
|
|
*.safetensors
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*~
|
|
|
|
# Credentials and sensitive data
|
|
credentials/
|
|
secrets/
|
|
*.pem
|
|
*.key
|