# ── Local data (not tracked) ────────────────────────────────────────────────── data/ *.db *.db-shm *.db-wal # ── Python ──────────────────────────────────────────────────────────────────── __pycache__/ *.py[cod] *.pyo *.pyd *.so *.egg *.egg-info/ dist/ build/ .eggs/ .mypy_cache/ .ruff_cache/ .pytest_cache/ .coverage htmlcov/ *.log # Virtual environments .venv/ venv/ env/ ENV/ # ── Node / npm ──────────────────────────────────────────────────────────────── node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* package-lock.json # ── Frontend build output ───────────────────────────────────────────────────── frontend/dist/ frontend/build/ # ── Environment & secrets ───────────────────────────────────────────────────── .env .env.* !.env.example # ── OS & editor artifacts ───────────────────────────────────────────────────── .DS_Store Thumbs.db desktop.ini .idea/ .vscode/ *.swp *.swo *~