forked from SlimeBoyOwO/LingChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
126 lines (92 loc) · 2.93 KB
/
Copy path.gitignore
File metadata and controls
126 lines (92 loc) · 2.93 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# ============================================================
# 通用规则 (General Rules)
# ============================================================
# 忽略操作系统生成的文件
.DS_Store
Thumbs.db
# 忽略日志文件
*.log
logs/
# 忽略配置文件和敏感信息
.env
.env.*
!.env.example
# ============================================================
# IDE 和编辑器配置 (IDE & Editor Configuration)
# ============================================================
.idea/
.vscode/
.vs/
# ============================================================
# Python 相关 (Python Specific)
# ============================================================
# 虚拟环境
.venv/
venv/
python-embed/
# Python 缓存和编译文件
__pycache__/
*.py[cod]
*.so
# Python 打包和构建产物,build/与dist/在通用构建产物中已包含
site/
*.egg-info/
# 测试和覆盖率报告
.pytest_cache/
.tox/
.coverage
coverage.*
htmlcov/
# ============================================================
# 前端和通用构建产物 (Frontend & General Build Artifacts)
# ============================================================
node_modules/
build/
dist/
# ============================================================
# 特定项目文件 (Project Specific Files)
# ============================================================
# 用户数据文件
data/*
# 数据库、聊天记录和本地数据存储
chat_system.db
chroma_db_store/
rag_chat_history/
browser_data/
# 大模型文件和本地缓存,这些文件过大很大
models/
embedding_models/
Pytorch/RAG/embedding_models/
*.safetensors
*.onnx
*.data
# 发布产物
release/
# ============================================================
# 游戏开发资源 (Game Development Assets)
# ============================================================
# 规则:默认忽略开发中的资源,但保留部分确定要使用的文件
# 忽略 data 目录下的 voice 文件夹,但保留 data 目录本身,以便跟踪其他文件(如果需要)
data/voice/
!data/.gitkeep
# 忽略 game_data/backgrounds/ 下的所有内容,但不忽略该目录本身,并保留指定的几个背景图
game_data/backgrounds/**
!game_data/backgrounds/
!game_data/backgrounds/白天.jpeg
!game_data/backgrounds/夜晚.jpg
# 忽略 game_data/musics/ 目录下的所有内容,但保留指定的音效文件
game_data/musics/
!game_data/musics/夜晚音效
# ============================================================
# 文档和其他工具 (Documentation & Other Tools)
# ============================================================
# Obsidian 笔记工具的配置和回收站
.obsidian/
.trash/
# 其他工具目录
.openmcp/
# ============================================================
# 开发者个人目录 (Developer Personal Directories)
# ============================================================
# 风雪
memory-bank/