Spaces:
Sleeping
Sleeping
Commit ·
39aa0e4
1
Parent(s): 06807ea
Ignore local db/temp/venv files for HF Spaces deployment
Browse files- .gitignore +18 -0
.gitignore
CHANGED
|
@@ -18,3 +18,21 @@ build/
|
|
| 18 |
dist/
|
| 19 |
wheels/
|
| 20 |
*.egg-info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
dist/
|
| 19 |
wheels/
|
| 20 |
*.egg-info
|
| 21 |
+
|
| 22 |
+
# Python
|
| 23 |
+
__pycache__/
|
| 24 |
+
*.pyc
|
| 25 |
+
|
| 26 |
+
# Virtualenv
|
| 27 |
+
venv/
|
| 28 |
+
.venv/
|
| 29 |
+
|
| 30 |
+
# Local DB / cache / temp artifacts
|
| 31 |
+
tmp/
|
| 32 |
+
*.db
|
| 33 |
+
*.sqlite
|
| 34 |
+
*.sqlite3
|
| 35 |
+
|
| 36 |
+
# OS
|
| 37 |
+
.DS_Store
|
| 38 |
+
|