Installation¶
Requirements¶
- Python 3.12+
- Django 6.0+
Install¶
Or with uv:
Add to INSTALLED_APPS¶
That's it. The package auto-discovers registered commands on startup via AppConfig.ready().
Optional extras¶
For Celery support:
For Django-Q2 support:
For Unfold admin:
Task backend (optional)¶
By default the package uses Django 6.0's built-in task system (django.tasks).
With ImmediateBackend (the default when no TASKS setting is configured)
commands run synchronously in the request cycle.
To configure a different backend:
# settings.py — use sync runner (no task backend at all)
ADMIN_RUNNER_BACKEND = "sync"
# settings.py — use Celery
ADMIN_RUNNER_BACKEND = "celery"
# settings.py — use Django-Q2 (no external broker needed)
ADMIN_RUNNER_BACKEND = "django-q2"
# settings.py — custom dotted path
ADMIN_RUNNER_BACKEND = "myapp.runners.MyCustomRunner"