django_prodserver.management.commands package¶
Submodules¶
django_prodserver.management.commands.devserver module¶
django_prodserver.management.commands.prodserver module¶
django_prodserver.management.commands.server module¶
- class django_prodserver.management.commands.server.Command(stdout=None, stderr=None, no_color=False, force_color=False)[source]¶
Bases:
BaseProcessCommandThe main server command.
- backend_base_class¶
alias of
BaseServerBackend
- help = 'Start a configured production server process.'¶
- process_label: str = 'server'¶
Human readable noun for the kind of process managed (e.g.
"server").
django_prodserver.management.commands.worker module¶
- class django_prodserver.management.commands.worker.Command(stdout=None, stderr=None, no_color=False, force_color=False)[source]¶
Bases:
BaseProcessCommandStart a configured background task worker process.
- backend_base_class¶
alias of
BaseWorkerBackend
- help = 'Start a configured background task worker process.'¶
- process_label: str = 'worker'¶
Human readable noun for the kind of process managed (e.g.
"server").