celery Install celery pip install "celery[redis]"Add celery settings in django In config/celery.py from __future__ import absolute_import, unicode_literals import os from celery import Celery os.environ.setdefault("DJANGO_SETTINGS_MODULE", "projectname.settings") app = Celery('config') # Using a string here means the worker doesn't have to serialize # the configuration object to chil..