Spaces:
Sleeping
Sleeping
Ivan Shelonik
commited on
Commit
·
aeaa6a5
1
Parent(s):
7d0f219
add: gitignore
Browse files- .gitignore +34 -0
.gitignore
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Intellij IDE folder
|
| 2 |
+
.idea/
|
| 3 |
+
|
| 4 |
+
# Byte-compiled / optimized / DLL files
|
| 5 |
+
__pycache__/
|
| 6 |
+
*.py[cod]
|
| 7 |
+
*$py.class
|
| 8 |
+
*.pyc
|
| 9 |
+
|
| 10 |
+
# Notebooks
|
| 11 |
+
.ipynb_checkpoints
|
| 12 |
+
|
| 13 |
+
# Archives and Databases
|
| 14 |
+
*.rar
|
| 15 |
+
*.tsv
|
| 16 |
+
*.csv
|
| 17 |
+
|
| 18 |
+
# MacOS specific DS_Store files
|
| 19 |
+
*.DS_Store
|
| 20 |
+
|
| 21 |
+
# swap files
|
| 22 |
+
*.swp
|
| 23 |
+
|
| 24 |
+
# dotenv
|
| 25 |
+
.env
|
| 26 |
+
|
| 27 |
+
# virtualenv
|
| 28 |
+
.venv
|
| 29 |
+
venv
|
| 30 |
+
myenv
|
| 31 |
+
workenv
|
| 32 |
+
workenv/
|
| 33 |
+
venv/
|
| 34 |
+
ENV/
|