
- Add MIT LICENSE file - Make README more generic and comprehensive - Add installation and troubleshooting sections - Include systemd service integration docs - Update with build and deployment instructions
16 lines
420 B
Desktop File
16 lines
420 B
Desktop File
[Unit]
|
|
Description=Livestream Archiver Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=rockvilleav
|
|
Group=rockvilleav
|
|
WorkingDirectory=/home/rockvilleav/livestream-archiver
|
|
ExecStart=/home/rockvilleav/livestream-archiver/target/release/livestream_archiver
|
|
Environment=PC_SYNC_TARGET=benjaminslingo@macbook-pro.slingoapps.dev:~/rtsda/livestreams/
|
|
Restart=always
|
|
RestartSec=10
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |