b8253b86a0
- Add global FastAPI exception handler for unhandled errors - Add get_current_user_obj() dependency for cleaner auth patterns - Switch VLM image description from serial to asyncio.gather concurrency - Extract score conversion to shared score_utils module - Docker: use env vars for passwords, remove hardcoded API key default - Add .gitattributes and update .gitignore for tar.gz and tsbuildinfo Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
72 lines
672 B
Plaintext
72 lines
672 B
Plaintext
# 环境变量与密钥
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.venv/
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
*.tsbuildinfo
|
|
|
|
# 运行时数据
|
|
runtime/
|
|
vector_store/
|
|
logs/
|
|
*.log
|
|
|
|
# 上传与生成文件
|
|
uploads/
|
|
generated_images/
|
|
|
|
# 数据目录中的运行时文件(保留源文件如 .tex)
|
|
data/database/
|
|
data/knowledge_base/
|
|
data/images/
|
|
|
|
# LaTeX 中间文件
|
|
*.aux
|
|
*.bbl
|
|
*.blg
|
|
*.toc
|
|
*.out
|
|
*.fdb_latexmk
|
|
*.fls
|
|
*.synctex.gz
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# 其他
|
|
*.tmp
|
|
*.temp
|
|
*.tar.gz
|
|
.cache/
|
|
*.coverage
|
|
.coverage
|
|
htmlcov/
|