Files
quiz/.gitignore
ameer 0480d1528c chore(gitignore): exclude real quiz pools and codex build artifacts
Real pools contain answer keys; only the generic demo pool example is
allowed to be tracked. Also excludes the .codex_done / codex_run.log /
codex_last_message.md leftovers from the original codex build run.
2026-05-02 20:10:41 +08:00

23 lines
373 B
Plaintext

.venv/
__pycache__/
*.py[cod]
.pytest_cache/
.coverage
htmlcov/
*.egg-info/
.env
quiz.db
*.db
*.db-shm
*.db-wal
# Real quiz pools must never be committed (they contain answer keys).
# Only generic demo pools tracked under examples/pool_example.json.
examples/*_pool.json
!examples/pool_example.json
# Codex build leftovers
.codex_done
codex_last_message.md
codex_run.log