Spaces:
Running
Running
Mahil27 commited on
Commit ·
8fc4493
1
Parent(s): 0386004
Remove venv and ignore large files
Browse files- .gitignore +11 -33
.gitignore
CHANGED
|
@@ -1,38 +1,16 @@
|
|
| 1 |
-
#
|
| 2 |
-
# Python
|
| 3 |
-
# =========================
|
| 4 |
-
__pycache__/
|
| 5 |
-
*.py[cod]
|
| 6 |
-
*.pyo
|
| 7 |
-
*.pyd
|
| 8 |
-
|
| 9 |
-
# Virtual environment
|
| 10 |
venv/
|
| 11 |
-
|
| 12 |
-
ENV/
|
| 13 |
|
| 14 |
-
#
|
| 15 |
-
|
| 16 |
|
| 17 |
-
#
|
| 18 |
-
# Uploads / Generated Files
|
| 19 |
-
# =========================
|
| 20 |
backend/uploads/
|
| 21 |
|
| 22 |
-
#
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
.idea/
|
| 29 |
-
|
| 30 |
-
# =========================
|
| 31 |
-
# Logs
|
| 32 |
-
# =========================
|
| 33 |
-
*.log
|
| 34 |
-
|
| 35 |
-
# =========================
|
| 36 |
-
# Node (just in case)
|
| 37 |
-
# =========================
|
| 38 |
-
node_modules/
|
|
|
|
| 1 |
+
# Python venv
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
venv/
|
| 3 |
+
backend/venv/
|
|
|
|
| 4 |
|
| 5 |
+
# Env secrets
|
| 6 |
+
backend/.env
|
| 7 |
|
| 8 |
+
# Uploaded files
|
|
|
|
|
|
|
| 9 |
backend/uploads/
|
| 10 |
|
| 11 |
+
# Cache
|
| 12 |
+
__pycache__/
|
| 13 |
+
*.pyc
|
| 14 |
+
*.pyd
|
| 15 |
+
*.dll
|
| 16 |
+
*.so
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|