Tasks

To use Django Tasks, which is built in the framework, you need to add two applications to your Django Project;

INSTALLED_APPS = [
    ...
    "django_rq",
    "django_tasks",
]