
- Update main.rs to use environment variables for paths (required) - Add comprehensive README.md with setup and usage instructions - Add MIT LICENSE file - Enhance .gitignore to exclude sensitive files and common artifacts - Add .env.example template for configuration
54 lines
531 B
Plaintext
54 lines
531 B
Plaintext
# Rust build artifacts
|
|
/target
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
*.env
|
|
|
|
# IDE and editor files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.syncthing.*
|
|
|
|
# System files
|
|
Thumbs.db
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Configuration files with sensitive data
|
|
config.toml
|
|
config.yaml
|
|
config.json
|
|
settings.toml
|
|
settings.yaml
|
|
settings.json
|
|
|
|
# Private keys and certificates
|
|
*.key
|
|
*.pem
|
|
*.crt
|
|
*.pfx
|
|
|
|
# Video files (if you don't want to commit them)
|
|
*.mp4
|
|
*.avi
|
|
*.mov
|
|
*.mkv
|