Spaces:
Paused
Paused
Commit
Β·
e5cc10e
1
Parent(s):
4b35062
π Updated .gitignore for Hugging Face compatibility
Browse files- .gitignore +25 -5
.gitignore
CHANGED
|
@@ -1,11 +1,31 @@
|
|
|
|
|
| 1 |
__pycache__/
|
| 2 |
-
*.
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
*.db
|
| 6 |
*.sqlite
|
|
|
|
|
|
|
| 7 |
.env
|
| 8 |
*.env
|
| 9 |
-
*.log
|
| 10 |
venv/
|
| 11 |
-
qvenv/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Bytecode and cache
|
| 2 |
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
|
| 5 |
+
# Logs
|
| 6 |
+
*.log
|
| 7 |
+
fastapi.log
|
| 8 |
+
|
| 9 |
+
# Databases
|
| 10 |
*.db
|
| 11 |
*.sqlite
|
| 12 |
+
|
| 13 |
+
# Environments
|
| 14 |
.env
|
| 15 |
*.env
|
|
|
|
| 16 |
venv/
|
| 17 |
+
qvenv/
|
| 18 |
+
|
| 19 |
+
# Editor and system files
|
| 20 |
+
*.swp
|
| 21 |
+
.DS_Store
|
| 22 |
+
.idea/
|
| 23 |
+
.vscode/
|
| 24 |
+
|
| 25 |
+
# Hugging Face generated (optional: if they appear)
|
| 26 |
+
.gitmodules
|
| 27 |
+
.huggingface/
|
| 28 |
+
|
| 29 |
+
# OS metadata
|
| 30 |
+
Thumbs.db
|
| 31 |
+
ehthumbs.db
|