# Git
.git
.gitignore

# Python
__pycache__
*.pyc
*.pyo
*.egg-info
.pytest_cache
.mypy_cache
.coverage
htmlcov

# Virtual environments
venv/
.venv/
env/

# Environment files
.env
.env.*
!.env.example

# IDE
.vscode
.idea
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Node (for web-v2 submodule builds)
web-v2/node_modules
web-v2/dist
web-v2/dist-ssr

# Data
data/
*.db
*.sqlite3

# Logs
*.log
logs/

# Docker
docker-compose*.yml
Dockerfile*
.dockerignore

# Documentation
*.md
!README.md

# CI/CD
.github
.pre-commit-config.yaml
