15 lines
351 B
SYSTEMD
15 lines
351 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description=Voice Assistant Gateway
|
||
|
|
After=network.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=simple
|
||
|
|
User=voice
|
||
|
|
WorkingDirectory=/opt/voice-assistant
|
||
|
|
EnvironmentFile=/etc/voice-assistant/voice-assistant.env
|
||
|
|
ExecStart=/opt/voice-assistant/.venv/bin/uvicorn app.main:app --host ${HOST} --port ${PORT}
|
||
|
|
Restart=always
|
||
|
|
RestartSec=2
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|