15 lines
261 B
SYSTEMD
15 lines
261 B
SYSTEMD
|
[Unit]
|
||
|
Description=Make BMS data available for consumers
|
||
|
|
||
|
[Service]
|
||
|
Type=exec
|
||
|
# The full path of the git repo on your system
|
||
|
WorkingDirectory=/usr/local/bmspy
|
||
|
ExecStart=poetry run bmspy-server
|
||
|
RestartSec=5
|
||
|
Restart=on-failure
|
||
|
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=default.target
|