71 lines
587 B
Plaintext
71 lines
587 B
Plaintext
|
|
### **.gitignore**
|
|
|
|
```gitignore
|
|
# Binaries
|
|
fush
|
|
fush.exe
|
|
fush-*
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
|
|
# Go workspace files
|
|
*.mod
|
|
*.sum
|
|
go.work
|
|
go.work.sum
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Build artifacts
|
|
/dist/
|
|
/bin/
|
|
/build/
|
|
/tmp/
|
|
|
|
# Logs and data
|
|
*.log
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
*.history
|
|
|
|
# Configuration (user-specific)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Fush specific
|
|
.cache/
|
|
.local/
|
|
.config/
|
|
history
|
|
fush.log
|
|
|
|
# Test coverage
|
|
*.cover
|
|
*.coverprofile
|
|
coverage.html
|
|
coverage.out
|
|
|
|
# Debug
|
|
__debug_bin
|
|
debug
|
|
*.dwp
|
|
|
|
# OS generated
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|