### Install django-tasks-rq Source: https://github.com/realorangeone/django-tasks-rq/blob/master/README.md Installs the django-tasks-rq package using pip. This is the first step to integrate RQ with Django Tasks. ```shell python -m pip install django-tasks-rq ``` -------------------------------- ### Run RQ worker with custom Job class Source: https://github.com/realorangeone/django-tasks-rq/blob/master/README.md Starts an RQ worker using the manage.py command, specifying 'django_tasks_rq.Job' as the custom job class. This ensures compatibility with django-tasks-rq's job handling. ```shell ./manage.py rqworker --job-class django_tasks_rq.Job ``` -------------------------------- ### Configure INSTALLED_APPS for django-tasks-rq Source: https://github.com/realorangeone/django-tasks-rq/blob/master/README.md Adds 'django_tasks_rq' to the INSTALLED_APPS setting in Django's settings.py. This enables the application to be recognized by Django. ```python INSTALLED_APPS = [ # ... "django_tasks_rq", ] ``` -------------------------------- ### Configure TASKS backend to use RQBackend Source: https://github.com/realorangeone/django-tasks-rq/blob/master/README.md Sets the default task backend to 'django_tasks_rq.RQBackend' and specifies the RQ queues to be used. This configuration directs Django Tasks to use RQ for queuing. ```python TASKS = { "default": { "BACKEND": "django_tasks_rq.RQBackend", "QUEUES": ["default"] } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.