Skip to content

Commit b65d73d

Browse files
committed
Use new celery commands
1 parent 1232374 commit b65d73d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/docker/start.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ touch /app/logs/access.log
99
tail -n 0 -f /app/logs/*.log &
1010

1111
rm -rf celerybeat.pid
12-
celery worker --app=debunkbot.celeryapp:app -l info --hostname=$DOKKU_APP_NAME &> /app/logs/celery.log &
13-
celery beat --app=debunkbot.celeryapp:app -l info &> /app/logs/celery.log &
14-
celery flower --app=debunkbot.celeryapp:app --auth=$DEBUNKBOT_OAUTH_EMAILS --broker=$DEBUNKBOT_BROKER_URL -l info &> /app/logs/celery.log &
12+
celery --app debunkbot.celeryapp:app worker -l info --hostname=$DOKKU_APP_NAME &> /app/logs/celery.log &
13+
celery --app debunkbot.celeryapp:app beat -l info &> /app/logs/celery.log &
14+
celery --broker=$DEBUNKBOT_BROKER_URL --app debunkbot.celeryapp:app flower --auth=$DEBUNKBOT_OAUTH_EMAILS -l info &> /app/logs/celery.log &
1515

1616
# Start Gunicorn processes
1717
echo Starting Gunicorn.

0 commit comments

Comments
 (0)