-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
159 lines (133 loc) · 2.14 KB
/
.gitignore
File metadata and controls
159 lines (133 loc) · 2.14 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
159
# =====================================
# 通用忽略規則
# =====================================
# 系統生成的文件
.DS_Store
Thumbs.db
ehthumbs.db
desktop.ini
# 編輯器/IDE 臨時文件
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
*.code-workspace
# 日誌文件
*.log
*.logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# 臨時資料夾
tmp/
temp/
.cache/
coverage/
dist/
build/
out/
docs/_site/
# 依賴目錄
node_modules/
bower_components/
jspm_packages/
.pnp/
.pnp.js
# 環境變數(敏感資訊)
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.env.*.local
# Python 相關
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.venv/
venv/
ENV/
env/
pip-log.txt
pip-delete-this-directory.txt
# Jupyter Notebook
.ipynb_checkpoints/
*.ipynb_checkpoints/
# macOS
.AppleDouble
.LSOverride
# Windows
ehthumbs_vista.db
Icon?
Thumbs.db
# =====================================
# 資料相關(CSV、資料檔、資料庫等) - 加入你的需求
# =====================================
# 所有 CSV 檔案(無論在哪個資料夾)
*.csv
# 特定資料目錄下的所有檔案(如果你不想提交任何資料)
data/
!data/.gitkeep # 可選:保留空資料夾結構
# 其他常見資料檔
*.xlsx
*.xls
*.parquet
*.feather
*.hdf5
*.h5
*.pickle
*.pkl
*.joblib
*.db
*.sqlite
*.sqlite3
*.sql
*.bak
*.dump
# 大型資料或模型檔
*.zip
*.rar
*.7z
*.tar.gz
*.tar
*.gz
*.bz2
# 訓練/測試資料(如果不提交)
train/
test/
validation/
dataset/
datasets/
# 模型儲存目錄(你已經有 MODEL_DIR)
models/
checkpoints/
weights/
# =====================================
# 前端相關(React/Vite/Next.js 等)
# =====================================
# Vite
.vite/
vite.config.*.timestamp-*
# Next.js
.next/
next-env.d.ts
# Nuxt
.nuxt/
.output/
# =====================================
# 其他工具與快取
# =====================================
# ESLint / Prettier
.eslintcache
.prettiercache
# TypeScript
*.tsbuildinfo
# 测试覆盖率
coverage/
.nyc_output/
# 包管理锁文件(视项目需要决定是否提交)
# package-lock.json
# yarn.lock
# pnpm-lock.yaml