# Python
__pycache__/
*.py[cod]
*.pyo
.venv/
venv/
*.egg-info/
dist/
build/
.eggs/
*.egg
*.whl
*.md

# SQLite databases
*.db
*.sqlite3

# Python bytecode
**/__pycache__/
**/*.pyc

# Built frontend assets (regenerated by npm run build)
server/coii_server/static/assets/
server/coii_server/static/index.html

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

# Node / frontend
node_modules/
frontend/dist/
frontend/.vite/

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

# OS
.DS_Store
Thumbs.db

# Background shell manifest
.bg-shell/

# Pytest
.pytest_cache/
htmlcov/
.coverage

# Mypy
.mypy_cache/
