mirror of
https://github.com/YunoHost-Apps/fittrackee_ynh.git
synced 2024-09-03 18:36:16 +02:00
25 lines
527 B
Desktop File
25 lines
527 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__
|
|
|
|
|
|
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
|