schon/.dockerignore
Egor fureunoir Gorbunov f16c03d2a6 Features: 1) Expand .gitignore to include comprehensive rules for Python, Node, Docker, IDEs, test artifacts, and distribution files;
Fixes: None;

Extra: 1) Add comments and structure to `.gitignore` for improved readability and maintainability; 2) Update placeholder comments in `docker-compose.yml` for future services.
2025-05-26 15:54:43 +03:00

77 lines
No EOL
2 KiB
Text

# ──────────────────────────────────────────────────────────────────────────
# Logs and reports
# ──────────────────────────────────────────────────────────────────────────
.logs/
*.log
debug.log
errors.log
test.json
coverage.xml
coverage.*
*.cover
*.py,cover
nosetests.xml
# Cache directories
__pycache__/
.pytest_cache/
.hypothesis/
.pyre/
.pytype/
.mypy_cache/
.dmypy.json
dmypy.json
cython_debug/
# Python environments
.Python
env/
env.bak/
venv/
venv.bak/
ENV/
.venv/
__pypackages__/
# ──────────────────────────────────────────────────────────────────────────
# Packaging and distribution
# ──────────────────────────────────────────────────────────────────────────
build/
dist/
dist-ssr/
*.egg
*.egg-info/
.installed.cfg
MANIFEST
*.manifest
*.spec
sdist/
wheels/
share/python-wheels/
pip-log.txt
pip-delete-this-directory.txt
# Git
.git/
# macOS
.DS_Store
# JetBrains
.idea/
# VisualStudio
.vscode/
# ──────────────────────────────────────────────────────────────────────────
# Docker & service data
# ──────────────────────────────────────────────────────────────────────────
Dockerfile
docker-compose.yml
db_backups/
services_data/
static/
media/
# Environment file
.env