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

# Virtual environments
.venv/
.uv/
venv/

# Environment files
.env
.env.local
.env.*.local

# Node
node_modules/
dist/

# Docker
pgdata/

# Uploaded file storage / local data
backend/data/uploads/
data/

# One-off migration scripts
backend/src/flywheel/fix_migration.py
backend/src/flywheel/import_meetings.py
backend/src/flywheel/import_research.py
backend/src/flywheel/migrate_context_store.py

# GSD planning artifacts
.planning/

# Spreadsheets / analysis files
*.xlsx

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

# OS
.DS_Store
Thumbs.db

# Testing
.coverage
htmlcov/
.pytest_cache/
.mypy_cache/

# uv
*.lock
!uv.lock
