Skip to content

Commit

Permalink
fix procfile after celery update
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek committed Apr 25, 2023
1 parent 248b8f0 commit 35d3efe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/Procfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
rest: gunicorn -c gunicorn_config.py wsgi
wamp: python3 -u ws.py
work: celery -A worker -X "${SUPERDESK_CELERY_PREFIX}publish,${SUPERDESK_CELERY_PREFIX}publish_priority" worker
publish: celery -A worker -Q "${SUPERDESK_CELERY_PREFIX}publish" worker
work: celery -A worker worker -X "${SUPERDESK_CELERY_PREFIX}publish,${SUPERDESK_CELERY_PREFIX}publish_priority"
publish: celery -A worker worker -Q "${SUPERDESK_CELERY_PREFIX}publish"
capi: gunicorn -c gunicorn_config.py content_api.wsgi
papi: gunicorn -c gunicorn_config.py prod_api.wsgi
beat: celery -A worker beat
publish_priority: celery -A worker -Q "${SUPERDESK_CELERY_PREFIX}publish_priority" worker
publish_priority: celery -A worker worker -Q "${SUPERDESK_CELERY_PREFIX}publish_priority"

0 comments on commit 35d3efe

Please sign in to comment.