I am -1 on adding a setting to handle a use-case that can be handled by users 
with a 6-line file:

On Monday 28 November 2016 16:05:39 Shai Berger wrote:
> 
> It seems all you need in the overridden runserver is:
> 
> from (...)runserver import Command as BaseCommand
> 
> class Command(BaseCommand):
>       def handle(self, *args, **options):
>               options.setdefault('addrport', '0.0.0.0:8000')
>               super(Command, self).handle(*args, **options)
> 
> What am I missing?

Reply via email to