mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-27 22:48:12 +08:00
The core module was becoming too large. By splitting it in cluster, monitor and tasks it becomes more manageable. It also reflects the documentation structure.
14 lines
356 B
Python
14 lines
356 B
Python
from django.core.management.base import BaseCommand
|
|
from django.utils.translation import ugettext as _
|
|
from django_q.cluster import Cluster
|
|
|
|
|
|
class Command(BaseCommand):
|
|
# Translators: help text for qcluster management command
|
|
help = _("Starts a Django Q Cluster.")
|
|
|
|
def handle(self, *args, **options):
|
|
q = Cluster()
|
|
q.start()
|
|
|