# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
.venv*/
venv/
.venv-ci/

# Frontend
frontend/node_modules/
frontend/dist/
frontend/.vite/

# Testing
.pytest_cache/
.ruff_cache/
.coverage
htmlcov/
.tox/
.hypothesis/

# Data and runtime
traces/
*.db
*.db-shm
*.db-wal
*.log

# Git
.git/
.gitignore
.gitattributes

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

# Documentation
*.md
!README.md
docs/
.ai_context/

# CI/CD
.github/
.gitlab-ci.yml

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# Misc
.DS_Store
*.bak
*.tmp
.env
.env.*
!.env.example
