- Add MIT LICENSE file - Expand .gitignore with standard Rust/Linux entries - Remove dangling symlinks (breadmancli, breadpadcli) and dev scratchpad (svgs.txt) from git tracking - Replace unsafe unwrap() calls with expect() in breadman CLI (guarded by prior filter)
29 lines
226 B
Text
29 lines
226 B
Text
target/
|
|
*.tgz
|
|
*.zip
|
|
breadpadcli
|
|
breadmancli
|
|
svgs.txt
|
|
|
|
# Editor & IDE
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Debug & Logs
|
|
*.log
|
|
*.pid
|
|
*.sock
|
|
*.pdb
|
|
|
|
# Rust/Cargo
|
|
Cargo.lock
|
|
dist/
|