Files

43 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

# ── Python ───────────────────────────────────────────────────────────────────
.venv/
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg-info/
dist/
build/
.pytest_cache/
htmlcov/
.coverage
coverage.xml
# ── Data (mounted as volume, not baked in) ───────────────────────────────────
data/
*.db
# ── Secrets / config ─────────────────────────────────────────────────────────
.env
.env.*
*.key
*.pem
# ── Git ───────────────────────────────────────────────────────────────────────
.git/
.gitignore
# ── Tests (not needed in production image) ───────────────────────────────────
tests/
# ── Docs ─────────────────────────────────────────────────────────────────────
docs/
*.md
# ── Deploy configs (not needed inside image) ──────────────────────────────────
deploy/
docker-compose*.yml
Makefile
# ── macOS ─────────────────────────────────────────────────────────────────────
.DS_Store