mirror of
https://github.com/django/daphne.git
synced 2025-03-12 19:35:47 +03:00
Add --nostatic and --insecure args to runserver command. (#450)
Fixes #449
This commit is contained in:
parent
32ac73e1a0
commit
f0a3ec60e9
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user