38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
# ── Python runtime artifacts ──────────────────────────────────────────────────
|
|
.venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
.ruff_cache/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# ── Secrets & credentials (mount as volumes or inject via env at runtime) ─────
|
|
.env
|
|
credentials.json
|
|
|
|
# ── OS / editor noise ─────────────────────────────────────────────────────────
|
|
.DS_Store
|
|
.zed/
|
|
|
|
# ── VCS ───────────────────────────────────────────────────────────────────────
|
|
.git/
|
|
.gitignore
|
|
|
|
# ── Analysis / data files (not needed at runtime) ─────────────────────────────
|
|
domande/
|
|
domande.csv
|
|
domande.xlsx
|
|
risposte/
|
|
risposte.md
|
|
parse_questions.py
|
|
|
|
# ── Package-manager files (pip uses requirements.txt inside the image) ─────────
|
|
pyproject.toml
|
|
uv.lock
|
|
|
|
# ── Docker files themselves ────────────────────────────────────────────────────
|
|
Dockerfile
|
|
.dockerignore
|