Spaces:
Sleeping
Sleeping
Commit ·
2c0f06f
1
Parent(s): 11d33cf
Reviewed and removed unwanted things
Browse files- .gitignore +12 -5
.gitignore
CHANGED
|
@@ -1,15 +1,22 @@
|
|
| 1 |
-
|
| 2 |
-
# Security / Secrets
|
| 3 |
-
.env
|
| 4 |
-
|
| 5 |
# Virtual Environments
|
| 6 |
venv/
|
| 7 |
env/
|
|
|
|
| 8 |
|
| 9 |
# Python Cache
|
| 10 |
__pycache__/
|
| 11 |
*.pyc
|
|
|
|
| 12 |
|
| 13 |
# OS generated files
|
| 14 |
.DS_Store
|
| 15 |
-
Thumbs.db
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Virtual Environments
|
| 2 |
venv/
|
| 3 |
env/
|
| 4 |
+
.venv/
|
| 5 |
|
| 6 |
# Python Cache
|
| 7 |
__pycache__/
|
| 8 |
*.pyc
|
| 9 |
+
*.pyo
|
| 10 |
|
| 11 |
# OS generated files
|
| 12 |
.DS_Store
|
| 13 |
+
Thumbs.db
|
| 14 |
+
|
| 15 |
+
# Secrets — never push these
|
| 16 |
+
.env
|
| 17 |
+
|
| 18 |
+
# Database — gets created by seed.py at build time
|
| 19 |
+
data/ecommerce.db
|
| 20 |
+
|
| 21 |
+
# Results output
|
| 22 |
+
results.json
|