# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/

# Python / Django
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/

# Python virtual environments
.venv/
venv/
env/
ENV/

# Django local data
backend/*.sqlite3
backend/*.sqlite3-*
backend/db.sqlite3
backend/media/
backend/staticfiles/

# Environment files
.env
.env.*
!.env.example
backend/.env
backend/.env.*
frontend/.env
frontend/.env.*
!frontend/.env.example

# Logs
*.log
logs/

# Frontend / Node / Vite
frontend/node_modules/
frontend/dist/
frontend/.vite/
frontend/.cache/
frontend/coverage/
frontend/npm-debug.log*
frontend/yarn-debug.log*
frontend/yarn-error.log*
frontend/pnpm-debug.log*

# Local build / temporary files
tmp/
temp/
*.tmp

# Optional local config overrides
config/*.local.yaml
config/*.local.yml
