mirror of
https://github.com/YunoHost-Apps/kresus_ynh.git
synced 2024-09-03 19:36:10 +02:00
23 lines
455 B
SYSTEMD
23 lines
455 B
SYSTEMD
|
[Unit]
|
||
|
Description=__APP__
|
||
|
After=syslog.target network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User=__APP__
|
||
|
Group=__APP__
|
||
|
ExecStartPre=__NODEJS__
|
||
|
WorkingDirectory=__FINALPATH__
|
||
|
Environment="PATH=__ENV_PATH__"
|
||
|
Environment=NODE_ENV=production
|
||
|
Environment=HOME=__NODEPATH__
|
||
|
ExecStart=__FINALPATH__/bin/kresus.js --config __FINALPATH__/config.ini
|
||
|
Restart=always
|
||
|
|
||
|
StandardOutput=syslog
|
||
|
StandardError=syslog
|
||
|
SyslogIdentifier=__APP__
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|