Skip to content

Quick Start

Basic Setup

  1. Install django-celeryx:
pip install django-celeryx[celery]
  1. Add to your Django settings:
INSTALLED_APPS = [
    # ...
    "django_celeryx.admin",
]
  1. Start your Django server and navigate to the admin. You'll see Tasks, Workers, Queues, and Registered Tasks sections.

Configuration

Optional configuration via CELERYX dict in settings:

CELERYX = {
    "MAX_TASK_COUNT": 100_000,
    "MAX_TASK_AGE": 86400,
    "AUTO_REFRESH_INTERVAL": 3,
}

See Configuration for all options.