Create .gitignore
Browse files- .gitignore +26 -0
.gitignore
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python cache files
|
2 |
+
__pycache__/
|
3 |
+
*.pyc
|
4 |
+
|
5 |
+
# Virtual environments
|
6 |
+
venv/
|
7 |
+
env/
|
8 |
+
|
9 |
+
# IDE/Editor files
|
10 |
+
.vscode/
|
11 |
+
.idea/
|
12 |
+
|
13 |
+
# Logs
|
14 |
+
*.log
|
15 |
+
|
16 |
+
# Cached data
|
17 |
+
*.cache
|
18 |
+
|
19 |
+
# Hugging Face cache
|
20 |
+
huggingface_hub_cache/
|
21 |
+
|
22 |
+
# Streamlit cache
|
23 |
+
.streamlit/
|
24 |
+
|
25 |
+
# Miscellaneous
|
26 |
+
.DS_Store
|