./manage.py runserver (--option)← Hier Optionen hinzufügen
-Ich möchte eine neue Verarbeitung hinzufügen und gleichzeitig den vorhandenen Vorgang im Runserver beibehalten
App Name/management/commands/runserver.py
from django.contrib.staticfiles.management.commands.runserver import Command as RunCommand
class Command(RunCommand):
help = "Befehl selbst(runserver)Erklärung usw."
def add_arguments(self, parser):
super().add_arguments(parser)
parser.add_argument(
'Optionsname', help='--Der Satz, der beim Helfen neben der Option angezeigt wird'
)
def handle(self, *args, **options):
#Hier verarbeiten
super().handle(*args, **options)
-Im Argument von * parser.add_argument * können Sie festlegen, ob für die zu erstellende Befehlsoption ein Argument erforderlich ist. ・ Es gibt andere Elemente, die mit Argumenten festgelegt werden können
-Es scheint, dass die hier erstellte App höher sein muss als die App, die in den Einstellungen von INSTALLED_APPS überschrieben wird. (Siehe [hier] für Details (https://docs.djangoproject.com/de/2.2/howto/custom-management-commands/#overriding-commands))
INSTALLED_APPS = [
'app', #Veränderung
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
・ Fügen Sie diesmal mit --example hinzu
./manage.py runserver --help
usage: manage.py runserver [-h] [--ipv6] [--nothreading] [--noreload]
[--nostatic] [--insecure] [--example] [--version]
[-v {0,1,2,3}] [--settings SETTINGS]
[--pythonpath PYTHONPATH] [--traceback]
[--no-color] [--force-color]
[addrport]
Starts a lightweight Web server for development and also serves static files.
positional arguments:
addrport Optional port number, or ipaddr:port
optional arguments:
-h, --help show this help message and exit
--ipv6, -6 Tells Django to use an IPv6 address.
--nothreading Tells Django to NOT use threading.
--noreload Tells Django to NOT use the auto-reloader.
--nostatic Tells Django to NOT automatically serve static files
at STATIC_URL.
--insecure Allows serving static files even if DEBUG is False.
--example #Dies ist die Option, die dieses Mal hinzugefügt wurde
--version show program's version number and exit
-v {0,1,2,3}, --verbosity {0,1,2,3}
Verbosity level; 0=minimal output, 1=normal output,
2=verbose output, 3=very verbose output
--settings SETTINGS The Python path to a settings module, e.g.
"myproject.settings.main". If this isn't provided, the
DJANGO_SETTINGS_MODULE environment variable will be
used.
--pythonpath PYTHONPATH
A directory to add to the Python path, e.g.
"/home/djangoprojects/myproject".
--traceback Raise on CommandError exceptions
--no-color Don't colorize the command output.
--force-color Force colorization of the command output.
Recommended Posts