# ---- Python (backend/) ----
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
*.db
*.sqlite3

# 运行时本地数据（KB blob / trace 落盘），演示可再生，不入库
backend/var/
data/local/

# ---- Node / Next.js (web/) ----
node_modules/
.pnpm-store/
web/.next/
web/out/
web/build/
web/next-env.d.ts
*.tsbuildinfo

# ---- 环境与密钥 ----
.env
.env.*
!.env.example

# ---- 编辑器 / 系统 ----
.DS_Store
.idea/
.vscode/
*.log
