# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
backend/.venv/
backend/.pytest_cache/
backend/.ruff_cache/

# Databases
backend/data/*.db
backend/data/*.db-*

# Node
frontend/node_modules/
frontend/dist/
frontend/tsconfig.tsbuildinfo

# Built frontend (generated by hatch_build.py during wheel build)
backend/app/static/*
!backend/app/static/.gitkeep

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

# OS
.DS_Store
Thumbs.db

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