Ignore .env and .pyc files
Browse files- .gitignore +8 -0
.gitignore
CHANGED
|
@@ -1 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
.gradio/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ignore environment files
|
| 2 |
+
.env
|
| 3 |
+
|
| 4 |
+
# Ignore gradio cache
|
| 5 |
.gradio/
|
| 6 |
+
|
| 7 |
+
# Python cache
|
| 8 |
+
__pycache__/
|
| 9 |
+
*.pyc
|