Files
plumbing/docs/servicem8-dev-webhook.service
T

18 lines
439 B
Desktop File

[Unit]
Description=ServiceM8 FastAPI Webhook Receiver
After=network.target
[Service]
User=michael
Group=michael
WorkingDirectory=/opt/webhooks
Environment="WEBHOOK_HOST=0.0.0.0"
Environment="WEBHOOK_PORT=18354"
Environment="WEBHOOK_DB_PATH=/opt/webhooks/servicem8_webhooks.db"
ExecStart=/opt/webhooks/bin/uvicorn servicem8_webhook_receiver:app --host 0.0.0.0 --port 18354
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target