I am launching a django application on aws elastic beanstalk. I'd like to run background task or worker in order order to run celery.
I can not find if it is possible or not. If yes how it could be achieve.
Here is what I am doing right now but this is producing every time an event type error.
container_commands:
01_syncdb:
command: "django-admin.py syncdb --noinput"
leader_only: true
50_sqs_email:
command: "./manage.py celery worker --loglevel=info"
leader_only: true
Thanks for the help,