[Django]-Where to run Celery on AWS

2👍

You can configure Procfile to run multiple processes like main django app, celery and celery-beat in parallel as documented here:

web: <command to start your django app>

celery: celery -A <path_to_celery_app> worker

celery_beat: celery -A <path_to_celery_app> beat

Leave a comment