
# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.egg-info/
dist/
build/
.eggs/

# ── Virtual environments ──────────────────────────────────────────────────────
.venv/
venv/
env/
xyzeus-env/

# ── Environment & secrets ─────────────────────────────────────────────────────
.env
.env.local
.env.*.local
data/secrets.toml

# ── Data & cache ──────────────────────────────────────────────────────────────
/data/
/cache/
*.parquet
*.las
*.laz

# ── Static bundled datasets (must deploy to Railway) ──────────────────────────
!xyzeus/services/fetch/static/*.parquet

# ── Generated outputs ─────────────────────────────────────────────────────────
*.log
/*.html
/pmtiles/

# ── Test & tooling caches ─────────────────────────────────────────────────────
.pytest_cache/
.mypy_cache/
.ruff_cache/

# ── OS ────────────────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db

# ── Editors ───────────────────────────────────────────────────────────────────
.idea/
.vscode/
*.iml

# ── Claude Code ───────────────────────────────────────────────────────────────
.claude/

# ── Notebooks (local scratch) ─────────────────────────────────────────────────
xyzeus_testing.ipynb

# ── Frontend ──────────────────────────────────────────────────────────────────
frontend/node_modules/
frontend/dist/
frontend/.env
frontend/.env.local
frontend/.env.*.local
