-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
61 lines (55 loc) · 1.36 KB
/
Copy path.gitignore
File metadata and controls
61 lines (55 loc) · 1.36 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
# ============================================================
# Python
# ============================================================
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
dist/
build/
*.egg
.eggs/
# ============================================================
# 虚拟环境
# ============================================================
venv/
.venv/
env/
.env/
# ============================================================
# 密钥与敏感配置 — 绝对不能提交!
# ============================================================
.env
*.env
!*.env.example
!*.docker.env.example
.docker.env
config.local.yml
# ============================================================
# IDE
# ============================================================
.idea/
.vscode/
*.swp
*.swo
*~
# ============================================================
# 模型文件(体积巨大,建议用 Git LFS 或外部存储)
# ============================================================
**/*.bin
**/*.safetensors
**/*.pth
**/*.pt
**/*.tar.gz
# ============================================================
# 数据库 / 数据文件
# ============================================================
*.db
*.sqlite
data/sessions/
# ============================================================
# 操作系统
# ============================================================
.DS_Store
Thumbs.db