1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/fittrackee_ynh.git synced 2024-09-03 18:36:16 +02:00
fittrackee_ynh/conf/fittrackee.service
2023-03-01 13:23:32 +01:00

24 lines
566 B
Desktop File

[Unit]
Description=__APP__ service
After=network.target
After=postgresql.service
After=redis.service
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=__APP__
Group=__APP__
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=__APP__
WorkingDirectory=__INSTALL_DIR__/
EnvironmentFile=/etc/systemd/system/${app}.service.d/variables.conf
ExecStart=__INSTALL_DIR__/.venv/bin/gunicorn -b 127.0.0.1:__PORT__ "fittrackee:create_app()" --error-logfile /var/log/__APP__/__APP__.log
Restart=always
[Install]
WantedBy=multi-user.target