livestream-archiver/.gitignore
RTSDA 6bf2eb38aa Add documentation and configuration templates
- Add comprehensive .gitignore for Rust projects
- Add MIT LICENSE file
- Add detailed README with installation and usage instructions
- Add generic service file template (livestream-archiver.service.example)
- Add generic deployment script template (deploy.sh.example)
- Keep sensitive configuration out of version control
2025-08-16 19:05:59 -04:00

42 lines
450 B
Plaintext

# Rust build artifacts
/target
/debug
/release
# Test files
*.mp4
*.avi
*.mkv
*.mov
test.*
output.*
# Package and deployment artifacts
/package/
*.tar.gz
*.tar
*.zip
livestream-archiver-deploy.tar.gz
# OS files
.DS_Store
Thumbs.db
# Editor files
*.swp
*.swo
*~
.vscode/
.idea/
# Cache files
.cache/
# Local configuration files (contain sensitive data)
livestream-archiver.service
deploy.sh
DEPLOY.md
# Keep example files
!*.example
!*.template