Add .DS_Store and docker/ragflow-logs to the git ignore list (#523)
Browse files### What problem does this PR solve?
Ignore temporal files to help Mac developers.
### Type of change
- [x] Other (please describe):
Co-authored-by: PLIX870I <[email protected]>
- .gitignore +6 -0
.gitignore
CHANGED
@@ -21,3 +21,9 @@ Cargo.lock
|
|
21 |
|
22 |
.idea/
|
23 |
.vscode/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
.idea/
|
23 |
.vscode/
|
24 |
+
|
25 |
+
# Exclude Mac generated files
|
26 |
+
.DS_Store
|
27 |
+
|
28 |
+
# Exclude the log folder
|
29 |
+
docker/ragflow-logs/
|