38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
|
|
# ── 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
|
||
|
|
|
||
|
|
# ── macOS ─────────────────────────────────────────────────────────────────────
|
||
|
|
.DS_Store
|