Spaces:
Runtime error
Runtime error
J.B-Lin commited on
Commit ·
e7b9546
1
Parent(s): 50a87dc
[cleanup] 添加临时文件 gitignore + 删除 _fix_*.py 临时修复脚本
Browse files- .gitignore 增加 _fix_*.py / _check_*.py / _setup_*.py 等通配规则
- 物理删除 15 个 _fix_*.py 和 5 个其他临时 _*.py 脚本
- api/temp/ 和 omni_output/ 已在 gitignore 中,不需要单独处理
- .gitignore +12 -2
.gitignore
CHANGED
|
@@ -9,8 +9,18 @@ __pycache__/
|
|
| 9 |
*.egg-info/
|
| 10 |
dist/
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
# Data & temp
|
| 13 |
data/nutrition/raw/
|
| 14 |
data/logs/
|
| 15 |
-
omni_output/
|
| 16 |
-
api/temp/
|
|
|
|
| 9 |
*.egg-info/
|
| 10 |
dist/
|
| 11 |
|
| 12 |
+
# Temporary fix scripts (one-shot patches, never committed)
|
| 13 |
+
_fix_*.py
|
| 14 |
+
_check_*.py
|
| 15 |
+
_setup_*.py
|
| 16 |
+
_install_*.py
|
| 17 |
+
_get_*.py
|
| 18 |
+
_test_*.py
|
| 19 |
+
|
| 20 |
+
# Debug outputs
|
| 21 |
+
omni_output/
|
| 22 |
+
api/temp/
|
| 23 |
+
|
| 24 |
# Data & temp
|
| 25 |
data/nutrition/raw/
|
| 26 |
data/logs/
|
|
|
|
|
|