Spaces:
Running
Running
Update .gitignore
Browse files- .gitignore +16 -6
.gitignore
CHANGED
@@ -1,6 +1,16 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
*.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Environment variables
|
2 |
+
.env
|
3 |
+
|
4 |
+
# Python artifacts
|
5 |
+
__pycache__/
|
6 |
+
*.pyc
|
7 |
+
*.pyo
|
8 |
+
*.pyd
|
9 |
+
.Python
|
10 |
+
env/
|
11 |
+
venv/
|
12 |
+
pip-selfcheck.json
|
13 |
+
|
14 |
+
# IDE settings
|
15 |
+
.idea/
|
16 |
+
.vscode/
|