# ersan — .gitignore

# ─── Secrets (NEVER commit) ──────────────────────────────────────────
.env
.env.*
!.env.example
*.pem
*.key
*.crt
**/secrets/
**/credentials/
**/tokens.json

# ersan runtime state (per-user, local only)
.ersan/
~/.ersan/

# ─── Python ──────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual envs
venv/
.venv/
env/
ENV/
env.bak/
venv.bak/

# uv
.uv/

# Tests / coverage
.tmp-*-tests/
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
.ruff_cache/
.mypy_cache/
.dmypy.json
dmypy.json

# Type checking
.pyre/
.pytype/

# Jupyter
.ipynb_checkpoints
profile_default/
ipython_config.py

# pyenv / direnv
.python-version
.envrc

# pdm
.pdm.toml
.pdm-python
.pdm-build/

# ─── IDEs ────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/

# ─── OS ──────────────────────────────────────────────────────────────
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini

# ─── Logs / runtime ──────────────────────────────────────────────────
*.log
*.pid
*.sock

# ─── Build artifacts / docs ──────────────────────────────────────────
docs/_build/
site/
public/

# ─── Editor backup files ─────────────────────────────────────────────
*.bak
*.tmp
*.orig
*.rej

# ctx managed entries
.context/journal
.context/journal-site
.context/journal-obsidian
.context/logs
.context/.ctx.key
.context/state/
.claude/settings.local.json
uv.lock.bak
