Question
How to Run Celery for my Django app migrated from Heroku
Hi!,
I’m trying to run my Django app in the new Digital Ocean Platform, how can I replicate the procfile configuration to run my Celery instance with workers instead and connect to the corresponding Redis db?
The Procfile looks like:
web: gunicorn myapp.wsgi --log-file -
worker: celery -A myapp worker -l info