- Add VERSION file (v1.1.0) - Add README.md with complete git workflow documentation - Add deploy.sh (corrected version) - Add status-monitor.service for systemd - Status monitor app.py already exists in repo Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
17 lines
312 B
Desktop File
17 lines
312 B
Desktop File
[Unit]
|
|
Description=Homelab Status Monitor
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/python3 /opt/status-monitor/app.py
|
|
WorkingDirectory=/opt/status-monitor
|
|
Restart=always
|
|
RestartSec=5
|
|
User=root
|
|
StandardOutput=syslog
|
|
StandardError=syslog
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|