# ── Python ─────────────────────────────────────────── __pycache__/ *.py[cod] *.pyo *.pyd .Python *.egg-info/ dist/ build/ .eggs/ *.egg *.whl # Virtual environments .venv/ venv/ env/ ENV/ .env .env.* !.env.example # ── Node / Frontend ─────────────────────────────────── node_modules/ frontend/node_modules/ frontend/dist/ frontend/.vite/ *.local # ── IDE / Editor ────────────────────────────────────── .vscode/ .idea/ *.swp *.swo .DS_Store Thumbs.db desktop.ini # ── Logs ───────────────────────────────────────────── *.log npm-debug.log* yarn-debug.log* yarn-error.log* vite.log # ── Testing / Coverage ──────────────────────────────── .coverage htmlcov/ .pytest_cache/ .playwright-mcp/ # ── Generated / Temp ────────────────────────────────── *.tmp *.temp src/plots/*.png # ── Secrets ─────────────────────────────────────────── *.pem *.key secrets.json credentials.json