Example used in the blog post How to Use Celery and RabbitMQ with Django
git clone https://github.com/sibtc/django-celery-example.gitpip install -r requirements.txtpython manage.py migratepython manage.py runservercelery -A mysite worker -l infoMake sure you have RabbitMQ service running.
rabbitmq-serverFor more info see the Blog post.