Spaces:
Sleeping
Sleeping
Update .gitignore
Browse files- .gitignore +34 -34
.gitignore
CHANGED
|
@@ -1,34 +1,34 @@
|
|
| 1 |
-
# Virtual environment
|
| 2 |
-
.venv/
|
| 3 |
-
|
| 4 |
-
# Vector index and database (large binary files)
|
| 5 |
-
data/
|
| 6 |
-
results/
|
| 7 |
-
|
| 8 |
-
# Logs
|
| 9 |
-
*.log
|
| 10 |
-
|
| 11 |
-
# Downloaded ML models (auto-downloaded at runtime)
|
| 12 |
-
models/
|
| 13 |
-
.cache/
|
| 14 |
-
sentence_transformers/
|
| 15 |
-
|
| 16 |
-
# Python cache
|
| 17 |
-
|
| 18 |
-
*.pyc
|
| 19 |
-
*.pyo
|
| 20 |
-
*.pyd
|
| 21 |
-
.env
|
| 22 |
-
venv/
|
| 23 |
-
env/
|
| 24 |
-
.venv/
|
| 25 |
-
# Model cache
|
| 26 |
-
.cache/
|
| 27 |
-
|
| 28 |
-
# OS files
|
| 29 |
-
.DS_Store
|
| 30 |
-
Thumbs.db
|
| 31 |
-
|
| 32 |
-
# IDE
|
| 33 |
-
.vscode/
|
| 34 |
-
.idea/
|
|
|
|
| 1 |
+
# Virtual environment
|
| 2 |
+
.venv/
|
| 3 |
+
|
| 4 |
+
# Vector index and database (large binary files)
|
| 5 |
+
data/
|
| 6 |
+
results/
|
| 7 |
+
|
| 8 |
+
# Logs
|
| 9 |
+
*.log
|
| 10 |
+
|
| 11 |
+
# Downloaded ML models (auto-downloaded at runtime)
|
| 12 |
+
models/
|
| 13 |
+
.cache/
|
| 14 |
+
sentence_transformers/
|
| 15 |
+
|
| 16 |
+
# Python cache
|
| 17 |
+
__pycache__/
|
| 18 |
+
*.pyc
|
| 19 |
+
*.pyo
|
| 20 |
+
*.pyd
|
| 21 |
+
.env
|
| 22 |
+
venv/
|
| 23 |
+
env/
|
| 24 |
+
.venv/
|
| 25 |
+
# Model cache
|
| 26 |
+
.cache/
|
| 27 |
+
|
| 28 |
+
# OS files
|
| 29 |
+
.DS_Store
|
| 30 |
+
Thumbs.db
|
| 31 |
+
|
| 32 |
+
# IDE
|
| 33 |
+
.vscode/
|
| 34 |
+
.idea/
|