Spaces:
Build error
Build error
Create .gitignore
Browse files- .gitignore +18 -0
.gitignore
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*.env
|
| 5 |
+
venv/
|
| 6 |
+
|
| 7 |
+
# Documents
|
| 8 |
+
business_docs/*.pdf # Ignore PDFs but keep folder structure
|
| 9 |
+
|
| 10 |
+
# Models and data
|
| 11 |
+
*.bin
|
| 12 |
+
*.safetensors
|
| 13 |
+
*.pkl
|
| 14 |
+
*.faiss
|
| 15 |
+
|
| 16 |
+
# System
|
| 17 |
+
.DS_Store
|
| 18 |
+
*.log
|