72 lines
812 B
Plaintext
72 lines
812 B
Plaintext
# 🚀 Docker ignore patterns for optimal build performance
|
|
|
|
# 📁 Development environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# 🧪 Testing and temporary files
|
|
tests/
|
|
test-results/
|
|
*_test.py
|
|
test_*.py
|
|
.ruff_cache/
|
|
.pytest_cache/
|
|
|
|
# 📝 Documentation and metadata
|
|
CHANGELOG*
|
|
LICENSE*
|
|
docs/
|
|
.gitignore
|
|
.dockerignore
|
|
|
|
# 🔧 Development tools
|
|
.git/
|
|
.github/
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 🎯 Build artifacts and cache
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
node_modules/
|
|
.cache/
|
|
dump/
|
|
|
|
# 📊 Logs and databases
|
|
*.log
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
dev-server.pid
|
|
|
|
# 🔐 Environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.key
|
|
*.pem
|
|
|
|
# 🎨 Frontend development
|
|
panel/node_modules/
|
|
*.css.map
|
|
*.js.map
|
|
|
|
# 🧹 OS and editor files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.tmp
|
|
*.temp
|