# =============================================================================
# Bateleur Hangar .gitignore
# =============================================================================

# =============================================================================
# Environment & Secrets
# =============================================================================
.env
.env.local
.env.*.local
.env.development
.env.production
*.pem
*.key
*.crt
secrets/
credentials.json

# =============================================================================
# OS Generated Files
# =============================================================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Desktop.ini
*~

# =============================================================================
# IDEs and Editors
# =============================================================================
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.idea/
*.iml
*.iws
*.ipr
*.swp
*.swo
*~
*.sublime-project
*.sublime-workspace

# Claude Code
.claude/settings.local.json

# =============================================================================
# Python
# =============================================================================
__pycache__/
*.py[cod]
*$py.class
*.so

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

# Distribution / packaging
*.egg
*.egg-info/
dist/
build/
wheels/
*.whl

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/

# Type checking
.mypy_cache/
.dmypy.json
.pytype/

# Jupyter
.ipynb_checkpoints/

# =============================================================================
# Logs
# =============================================================================
logs/
*.log

# =============================================================================
# Temporary Files
# =============================================================================
tmp/
temp/
*.tmp
*.temp
*.bak
*.backup

# =============================================================================
# uv
# =============================================================================
# uv.lock IS tracked — it is the reproducibility contract for the workspace.
# Do NOT add uv.lock to .gitignore. See CHANGELOG.md [Unreleased] for rationale.

# =============================================================================
# Project Specific
# =============================================================================
# Add project-specific ignores below this line
