108 lines
1.1 KiB
Text
108 lines
1.1 KiB
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python cache and build artifacts
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox
|
|
.coverage
|
|
.coverage.*
|
|
.pytest_cache
|
|
htmlcov
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Project specific
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
.env
|
|
.env.*
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
dump.rdb
|
|
|
|
# Documentation and extra Dockerfiles
|
|
DOCKER.md
|
|
docs/
|
|
Dockerfile.slim
|
|
Dockerfile.distroless
|
|
Dockerfile.ultra-minimal
|
|
Dockerfile.micro
|
|
Dockerfile.nano
|
|
Dockerfile.minimal
|
|
docker-compose*.yml
|
|
test_*.py
|
|
tests/
|
|
DEVELOPMENT.md
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Development tools
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.black
|
|
.isort.cfg
|
|
mypy.ini
|
|
setup.cfg
|
|
tox.ini
|
|
.pre-commit-config.yaml
|
|
.flake8
|
|
.bandit
|
|
.safety
|
|
.hypothesis/
|
|
.nox/
|
|
|
|
# Additional exclusions for ultra-minimal images
|
|
*.orig
|
|
*.rej
|
|
*.bak
|
|
*.backup
|
|
*.tmp
|
|
*.temp
|
|
\#*\#
|
|
/.emacs.desktop
|
|
/.emacs.desktop.lock
|
|
*.elc
|
|
auto-save-list
|
|
tramp
|
|
.\#*
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
*.code-workspace
|