mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
16 lines
305 B
Desktop File
16 lines
305 B
Desktop File
[Unit]
|
|
Description=raspap-restapi
|
|
After=network.target
|
|
|
|
[Service]
|
|
User=pi
|
|
WorkingDirectory=/etc/raspap/api
|
|
LimitNOFILE=4096
|
|
ExecStart=/usr/bin/python3 -m uvicorn main:app --host 0.0.0.0 --port 8081
|
|
ExecStop=/bin/kill -HUP ${MAINPID}
|
|
Restart=on-failure
|
|
RestartSec=5s
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|