# ---------- 环境与密钥 ----------
# 本机配置含密钥，一律不提交；保留 .env.example 模板
.env
.env.local
.env.*
!.env.example

# ---------- 运行日志 ----------
server.out.log
server.err.log
*.log

# ---------- Python ----------
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
htmlcov/
coverage.xml

# ---------- 生成产物 ----------
# 前端发布目录：由 vue-app/dist 构建产物同步生成，不直接入库
static/

# ---------- 系统与编辑器 ----------
.DS_Store
Thumbs.db
Desktop.ini
.idea/
.vscode/
