# -------------------------
# Version control
# -------------------------
.git/
.gitignore
.appignore

# -------------------------
# CI configs (usually not needed at runtime)
# -------------------------
.gitlab-ci.yml

# -------------------------
# Python artifacts
# -------------------------
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg-info/
.eggs/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

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

# -------------------------
# Build / distribution
# -------------------------
build/
dist/
*.whl

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

# -------------------------
# Secrets & env files
# -------------------------
.env
.env.*
*.pem
*.key
*.crt

# -------------------------
# Logs & temp files
# -------------------------
*.log
*.tmp
*.bak

# -------------------------
# Documentation
# -------------------------
# Ignore all markdown by default
*.md


