Spaces:
Running
Running
Ignore compiled binaries & venv
Browse files- .gitignore +13 -0
.gitignore
CHANGED
@@ -56,3 +56,16 @@ py_backend/.venv/
|
|
56 |
backend/postgres-data/
|
57 |
py_backend/.venv/
|
58 |
backend/postgres-data/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
backend/postgres-data/
|
57 |
py_backend/.venv/
|
58 |
backend/postgres-data/
|
59 |
+
# Python junk
|
60 |
+
.venv/
|
61 |
+
venv/
|
62 |
+
**/__pycache__/
|
63 |
+
*.pyc
|
64 |
+
*.pyd
|
65 |
+
*.so
|
66 |
+
*.dll
|
67 |
+
*.exe
|
68 |
+
|
69 |
+
# Your project
|
70 |
+
py_backend/.venv/
|
71 |
+
backend/postgres-data/
|