Create .gitignore
Browse files- .gitignore +20 -0
.gitignore
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ignore gradio db files# sys files
|
| 2 |
+
*__pycache__*
|
| 3 |
+
*__pycache__/
|
| 4 |
+
|
| 5 |
+
# data
|
| 6 |
+
|
| 7 |
+
*.txt
|
| 8 |
+
*.pkl
|
| 9 |
+
*flagged/
|
| 10 |
+
|
| 11 |
+
# ignore log files
|
| 12 |
+
*.log
|
| 13 |
+
*logs/
|
| 14 |
+
|
| 15 |
+
# scratch
|
| 16 |
+
*scratch/
|
| 17 |
+
*scratch*
|
| 18 |
+
|
| 19 |
+
# notebooks
|
| 20 |
+
*notebooks/
|