Spaces:
Sleeping
Sleeping
dmpantiu commited on
Commit ·
e25ad38
1
Parent(s): 37cfdf9
Add .DS_Store to .gitignore
Browse files- .gitignore +36 -0
.gitignore
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ignore virtual environments
|
| 2 |
+
.venv/
|
| 3 |
+
|
| 4 |
+
# Ignore Python cache files
|
| 5 |
+
__pycache__/
|
| 6 |
+
*.py[cod]
|
| 7 |
+
*.pyo
|
| 8 |
+
*.pyd
|
| 9 |
+
|
| 10 |
+
# Ignore environment variables
|
| 11 |
+
.env
|
| 12 |
+
|
| 13 |
+
# Ignore macOS specific files
|
| 14 |
+
.DS_Store
|
| 15 |
+
|
| 16 |
+
# Ignore PyCharm project files
|
| 17 |
+
.idea/
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
# Ignore logs
|
| 21 |
+
logs/
|
| 22 |
+
|
| 23 |
+
# Ignore Streamlit configuration files
|
| 24 |
+
.streamlit/
|
| 25 |
+
|
| 26 |
+
# Ignore specific files
|
| 27 |
+
save.py
|
| 28 |
+
files.py
|
| 29 |
+
project_structure.txt
|
| 30 |
+
project_files_structure.txt
|
| 31 |
+
transit.json
|
| 32 |
+
directory_structure.txt
|
| 33 |
+
pangaea_session_history.json
|
| 34 |
+
|
| 35 |
+
# Ignore temporary files
|
| 36 |
+
tmp/figs/
|