1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tandoor_ynh.git synced 2024-09-03 20:35:56 +02:00
tandoor_ynh/conf/systemd.service

19 lines
380 B
SYSTEMD
Raw Normal View History

2022-08-06 19:00:44 +02:00
[Unit]
2022-08-07 23:15:19 +02:00
Description=Tandoor, smart recipe mangement
2022-08-06 19:00:44 +02:00
After=network.target
[Service]
Type=simple
2022-08-06 23:20:30 +02:00
Restart=always
RestartSec=3
2022-08-07 03:29:06 +02:00
User=__APP__
2022-08-07 23:15:19 +02:00
Group=__APP__
2022-08-06 23:23:06 +02:00
WorkingDirectory=__FINALPATH__
EnvironmentFile=__FINALPATH__/.env
2022-08-07 23:52:20 +02:00
ExecStart=__FINALPATH__/venv/bin/gunicorn --bind 127.0.0.1:__PORT__ recipes.wsgi:application
2022-08-07 23:15:19 +02:00
Restart=on-failure
RestartSec=10
2022-08-06 19:00:44 +02:00
[Install]
2022-08-07 23:52:20 +02:00
WantedBy=multi-user.target