16 lines
361 B
Plaintext
16 lines
361 B
Plaintext
[Unit]
|
|
Description=Deployment of $host (on port $port, from $repo/$branch:$commitHash) [$deploymentId]
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
Environment="PORT=$port"
|
|
ExecStart=make start
|
|
User=drm
|
|
WorkingDirectory=$serviceDir/src
|
|
Restart=yes
|
|
StandardOutput=file:$logsDir/start.log
|
|
StandardError=file:$logsDir/start.log
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |