30 lines
379 B
Plaintext
Executable File
30 lines
379 B
Plaintext
Executable File
# ── Secrets & local data (never bake into the image) ──
|
|
.env
|
|
data/
|
|
*.db
|
|
*.log
|
|
|
|
# ── Python ──
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# ── Git / CI / docs ──
|
|
.git/
|
|
.gitignore
|
|
.github/
|
|
README.md
|
|
|
|
# ── OS / editor ──
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|