13 lines
308 B
SYSTEMD
13 lines
308 B
SYSTEMD
|
[Unit]
|
||
|
Description=Keeps the webhooks express server running
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
ExecStart=/usr/bin/node webhooks.js
|
||
|
Restart=on-failure
|
||
|
User=webhooks
|
||
|
WorkingDirectory=/home/webhooks/git-webhooks
|
||
|
EnvironmentFile=/etc/systemd/system/git-webhooks.env
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|