Spaces:
Sleeping
Sleeping
Create .gitignore
Browse files- .gitignore +10 -0
.gitignore
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ignore the secret API keys
|
| 2 |
+
.env
|
| 3 |
+
|
| 4 |
+
# Ignore Python cache files
|
| 5 |
+
__pycache__/
|
| 6 |
+
*.pyc
|
| 7 |
+
|
| 8 |
+
# Ignore local environment folders (if you use them)
|
| 9 |
+
venv/
|
| 10 |
+
.venv/
|