45 lines
520 B
Plaintext
45 lines
520 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# Cargo lock file (include for applications, exclude for libraries)
|
|
# Cargo.lock
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Session storage (for this CLI app specifically)
|
|
.chat_cli_sessions/
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|