
- 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
42 lines
450 B
Plaintext
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 |