15 lines
324 B
SYSTEMD
15 lines
324 B
SYSTEMD
|
[Unit]
|
||
|
Description=pretalx background worker
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
User=pretalx
|
||
|
Group=pretalx
|
||
|
Environment=PRETALX_CONFIG_FILE=/opt/pretalx/pretalx.cfg
|
||
|
ExecStart=/opt/pretalx/venv/bin/celery -A pretalx.celery_app worker -l info
|
||
|
WorkingDirectory=/opt/pretalx
|
||
|
Restart=on-failure
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|