# ── Secrets ──────────────────────────────────────────────────────────────── .env .env.local .env.*.local *.key *.pem secrets.* # ── Python dependencies / cache ──────────────────────────────────────────── __pycache__/ *.pyc *.pyo *.pyd .venv/ venv/ env/ .tox/ # ── Build / distribution ──────────────────────────────────────────────────── dist/ build/ *.egg-info/ # ── IDE ───────────────────────────────────────────────────────────────────── .idea/ .vscode/ *.swp *.swo # ── OS artefacts ──────────────────────────────────────────────────────────── .DS_Store Thumbs.db # ── Database data directories ─────────────────────────────────────────────── pgdata/ postgres-data/ mongo-data/ mysql-data/ # ── Runtime state files ───────────────────────────────────────────────────── approvals.json comments.json # ── Large generated outputs (can be regenerated by the pipeline) ───────────── output/ # ── Source assets (too large for git — live on VPS, bind-mounted at runtime) ── source/ # ── Debug / scratch ────────────────────────────────────────────────────────── debug_*.png task.txt # ── Claude Code internal files ─────────────────────────────────────────────── .claude/