Skip to content

Commit

Permalink
📝 chore(.gitignore): add .gitignore file to ignore unnecessary files …
Browse files Browse the repository at this point in the history
…and directories

🔍 Add the following patterns to the .gitignore file:
- Ignore macOS system files: .DS_Store, .AppleDouble, .LSOverride
- Ignore thumbnails: ._* files
- Ignore files that might appear on external disk: .Spotlight-V100, .Trashes
- Ignore compiled Python files: *.pyc
- Ignore langflow logs: .log file
  • Loading branch information
ogabrielluiz committed Oct 15, 2023
1 parent 72f804f commit 3225deb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# macOS system files
.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Compiled Python files
*.pyc

# langflow
.log

0 comments on commit 3225deb

Please sign in to comment.