-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore.github
More file actions
158 lines (137 loc) · 1.65 KB
/
.gitignore.github
File metadata and controls
158 lines (137 loc) · 1.65 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# ======================================
# GitHub开源版本专用.gitignore
# 确保所有敏感文件和大文件被排除
# ======================================
# 敏感配置文件(最高优先级)
.env
.env.local
.env.*.local
.env.backup
.env.production
.env.development
*.env
config/local_*.py
config/private_*.py
config/secret*.py
# Python缓存
__pycache__/
**/__pycache__/
*.py[cod]
*$py.class
*.pyc
*.pyo
# 分发/打包
.Python
build/
build_windows/
dist/
dist_windows/
eggs/
.eggs/
*.egg
*.egg-info/
*.whl
# 测试
.pytest_cache/
.coverage
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
# 虚拟环境
.venv/
venv/
ENV/
env/
.env/
# IDE和编辑器
.idea/
.vscode/
*.swp
*.swo
*~
.project
.pydevproject
.settings/
# 操作系统文件
Thumbs.db
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Desktop.ini
# 日志文件
logs/
*.log
log/
# 缓存目录(可能包含敏感数据)
cache/
*.cache
.caches/
# 数据库文件(可能包含真实数据)
*.db
*.sqlite
*.sqlite3
*.db-journal
# 临时文件
*.tmp
*.temp
.tmp/
.temp/
temp/
tmp/
# 大型二进制文件
*.pkg
*.pyz
*.zip
*.7z
*.rar
*.tar
*.tar.gz
*.tgz
*.gz
*.exe
*.dll
*.so
*.dylib
# 机器学习模型(如果有的话)
*.h5
*.pkl
*.pickle
*.joblib
*.onnx
*.pb
models/
# 数据文件(可能包含敏感数据)
data/
*.csv
*.xlsx
*.xls
*.parquet
*.feather
# Jupyter Notebook检查点
.ipynb_checkpoints/
# 环境管理
*.egg-info/
pip-log.txt
pip-delete-this-directory.txt
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre类型检查
.pyre/
# 覆盖报告
htmlcov/
.tox/
.nox/
# Jupyter
.ipynb_checkpoints
# 其他
sessions/
output/
analysis/
installer/