# ── Python ────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
*.egg
dist/
build/
.eggs/
sdist/

# ── Virtual environments ─────────────────────────────
.venv/
venv/
env/
ENV/

# ── Testing & coverage ───────────────────────────────
.pytest_cache/
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/

# ── Linting & type-checking ──────────────────────────
.mypy_cache/
.ruff_cache/
.dmypy.json
dmypy.json

# ── IDEs & editors ───────────────────────────────────
.idea/
.vscode/
.nova/
.fleet/
.zed/
*.swp
*.swo
*~

# ── OS files ─────────────────────────────────────────
.DS_Store
Thumbs.db
Desktop.ini

# ── Environment & secrets ────────────────────────────
.env
.env.*
!.env.example

# ── SQLite databases (runtime data) ──────────────────
*.db
*.db-wal
*.db-shm

# ── ONNX models (downloaded at runtime) ──────────────
*.onnx

# ── Docker ───────────────────────────────────────────
.docker/

# ── Docs Web (Laravel app dependencies) ──────────────────
docs-web/
docs-web/node_modules/
docs-web/vendor/
docs-web/.env
docs-web/public/build/
docs-web/public/hot/
docs-web/public/storage/
docs-web/storage/*.key
docs-web/storage/pail/

# ── Docs ───────────────────────────────────
docs/reference/
