
- Remove livestream-archiver.service with hardcoded usernames and domains - Add livestream-archiver.service.example as generic template - Add actual service file to .gitignore to prevent accidental commits - Users should copy .example file and customize for their setup
34 lines
331 B
Plaintext
34 lines
331 B
Plaintext
# Rust build artifacts
|
|
/target
|
|
/debug
|
|
/release
|
|
|
|
# Test files
|
|
*.mp4
|
|
*.avi
|
|
*.mkv
|
|
*.mov
|
|
|
|
# Package and deployment artifacts
|
|
/package/
|
|
*.tar.gz
|
|
*.tar
|
|
*.zip
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor files
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Cache files
|
|
.cache/
|
|
|
|
# Local configuration (contains sensitive data)
|
|
livestream-archiver.service
|