-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
118 lines (105 loc) · 1.06 KB
/
.gitignore
File metadata and controls
118 lines (105 loc) · 1.06 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
# Python
__pycache__/
*.py[cod]
*.pyd
*.pyo
.Python
.env
.venv/
venv/
env/
*.egg-info/
build/
dist/
# Node / Electron
node_modules/
.vscode/
out/
*.tsbuildinfo
# 日志文件
*.log
logs/
*.tmp
*.swp
*.bak
translate_server.log
# 机器学习模型和权重文件
/models/
/models_cache/
/torch-env/
/nllb200_ct2/
*.pt
*.pth
*.safetensors
*.onnx
*.pkl
*.joblib
*.h5
*.hdf5
*.npz
*.npy
*.bin
*.model
*.dat
*.pak
*.checkpoint
*.ckpt
# 音频文件(录音等)
*.wav
*.mp3
*.flac
*.aac
*.ogg
*.m4a
*.wma
# 视频文件
*.mp4
*.avi
*.mkv
*.mov
*.wmv
*.flv
# 系统文件
.DS_Store
Thumbs.db
.idea/
.vscode/settings.json
desktop.ini
*.lnk
# 数据库文件
*.sqlite3
*.db
*.sqlite
# 压缩文件
*.zip
*.rar
*.7z
*.tar.gz
*.tar.bz2
# Claude 配置文件
.claude/
CLAUDE.md
# 测试和覆盖率文件
.pytest_cache/
.coverage
htmlcov/
.tox/
.mypy_cache/
.dmypy.json
dmypy.json
# 开发和临时文件
debug_*.py
test_*.py
*_test.py
tmp/
temp/
scratch/
# 环境变量文件-不要提交密码
.env.local
.env.production
config.local.py
secrets.json
# Git 配置
*.orig
*.rej
*.patch