-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (44 loc) · 955 Bytes
/
Copy path.gitignore
File metadata and controls
52 lines (44 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Brainstorm / superpowers 工作文件(含临时 HTML,不进 git)
.superpowers/
# 决策记录(本地个人笔记:技术选型/架构取舍的原因与备选,不进 git)
docs/decisions/
# Python
__pycache__/
*.py[cod]
.venv/
venv/
env/
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Node / 前端
node_modules/
dist/
build/
.vite/
*.local
# 本地数据 / 索引 / 向量库(事实来源是 Project 文件夹,这些是可重建的派生物)
*.db
*.sqlite
*.sqlite3
*.lance/
/data/
/models/
# 密钥与环境
.env
.env.*
!.env.example
*.key
# Claude Code 本地设置(共享的是 .claude/settings.json;.local 是本机的)
.claude/settings.local.json
# OS / 编辑器
.DS_Store
.idea/
.vscode/*
!.vscode/extensions.json
# RAG 评测(冻结语料拷贝、run 归档、本地 corpus_spec —— 派生物/本地配置,不进 git)
backend/eval-data/
backend/scripts/rag_eval/runs/
backend/scripts/rag_eval/corpus_spec.json
packaging/vendor/