Spaces:
Runtime error
Runtime error
Create .gitignore
Browse files- .gitignore +23 -0
.gitignore
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# System files
|
| 2 |
+
.DS_Store
|
| 3 |
+
.lprof
|
| 4 |
+
|
| 5 |
+
# Environment files
|
| 6 |
+
.env
|
| 7 |
+
.env.*
|
| 8 |
+
|
| 9 |
+
# Python cache files
|
| 10 |
+
__pycache__/
|
| 11 |
+
*.py[cod]
|
| 12 |
+
*$py.class
|
| 13 |
+
.pytest_cache/
|
| 14 |
+
|
| 15 |
+
# Virtual environments
|
| 16 |
+
.venv/
|
| 17 |
+
venv/
|
| 18 |
+
ENV/
|
| 19 |
+
env/
|
| 20 |
+
|
| 21 |
+
# Project specific
|
| 22 |
+
.alita_envs/
|
| 23 |
+
temp_downloads/
|