# ---- Local-only files ----
progress.txt

# ---- Internal planning docs (kept local, not published) ----
docs/

# ---- Secrets / local config (NEVER commit real DSNs or credentials) ----
connections.json
.env
.env.*

# ---- Python bytecode / caches ----
__pycache__/
*.py[cod]
*$py.class
*.so

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

# ---- Packaging / build artifacts ----
build/
dist/
*.egg
*.egg-info/
.eggs/
wheels/
*.mcpb

# ---- Tooling caches ----
.ruff_cache/
.pytest_cache/
.mypy_cache/
.coverage
.coverage.*
htmlcov/
.tox/

# ---- IDE / OS noise ----
.idea/
.vscode/
*.swp
.DS_Store
Thumbs.db
