Add --nostatic and --insecure args to runserver command

This commit is contained in:
David Fuentes 2022-11-07 10:35:49 +01:00
parent afd0d51b83
commit 94515a0cad

View File

@ -73,6 +73,18 @@ class Command(RunserverCommand):
"seconds (default: 5)"
),
)
parser.add_argument(
"--nostatic",
action="store_false",
dest="use_static_handler",
help="Tells Django to NOT automatically serve static files at STATIC_URL.",
)
parser.add_argument(
"--insecure",
action="store_true",
dest="insecure_serving",
help="Allows serving static files even if DEBUG is False.",
)
def handle(self, *args, **options):
self.http_timeout = options.get("http_timeout", None)