Skip to content

sibtc/django-celery-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Celery Example

Example used in the blog post How to Use Celery and RabbitMQ with Django

Running Locally

git clone https://github.com/sibtc/django-celery-example.git
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver
celery -A mysite worker -l info

Make sure you have RabbitMQ service running.

rabbitmq-server

For more info see the Blog post.