Skip to content

Instantly share code, notes, and snippets.

@aaronlelevier
Created December 23, 2014 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaronlelevier/95294917ab3f9d02a38c to your computer and use it in GitHub Desktop.
Save aaronlelevier/95294917ab3f9d02a38c to your computer and use it in GitHub Desktop.
Basic setup and install need to get Celery running in Django with Redis
#pip
pip install redis
pip install celery[redis]
pip install django-celery
# redis server
# download here
http://download.redis.io/redis-stable.tar.gz
# follow install instructions here
http://redis.io/topics/quickstart
# use godjango.com video to refresh on how to use it
https://godjango.com/63-deferred-tasks-and-scheduled-jobs-with-celery-31-django-17-and-redis/
# or celery docs on config
http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment