Update .gitignore
Browse files- .gitignore +17 -1
.gitignore
CHANGED
@@ -1,4 +1,20 @@
|
|
|
|
1 |
__pycache__/
|
2 |
*.pyc
|
|
|
|
|
|
|
|
|
|
|
3 |
.env
|
4 |
-
backend/.env
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python
|
2 |
__pycache__/
|
3 |
*.pyc
|
4 |
+
*.pyo
|
5 |
+
*.pyd
|
6 |
+
.Python
|
7 |
+
env/
|
8 |
+
venv/
|
9 |
.env
|
10 |
+
backend/.env
|
11 |
+
|
12 |
+
# Hugging Face Spaces
|
13 |
+
.DS_Store
|
14 |
+
*.log
|
15 |
+
temp_image.png
|
16 |
+
|
17 |
+
# Miscellaneous
|
18 |
+
*.swp
|
19 |
+
*.bak
|
20 |
+
*.tmp
|