mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-03 04:42:22 +00:00
15 lines
360 B
SYSTEMD
15 lines
360 B
SYSTEMD
|
[Unit]
|
||
|
Description=BookWyrm scheduler
|
||
|
After=network.target postgresql.service
|
||
|
|
||
|
[Service]
|
||
|
User=bookwyrm
|
||
|
Group=bookwyrm
|
||
|
WorkingDirectory=/opt/bookwyrm/
|
||
|
ExecStart=/opt/bookwyrm/venv/bin/celery -A celerywyrm beat -l INFO --scheduler django_celery_beat.schedulers:DatabaseScheduler
|
||
|
StandardOutput=journal
|
||
|
StandardError=inherit
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|