Opened 16 years ago

Closed 16 years ago

Last modified 16 years ago

#8628 closed (wontfix)

Add development server address/port as settings.

Reported by: k0001 Owned by: nobody
Component: django-admin.py runserver Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

This patch adds two new setting variables: DEVELOPMENT_SERVER_ADDRESS and DEVELOPMENT_SERVER_PORT.

You can use them to override the default '127.0.0.1:8000' pair where the development server is binded to without the need of handling those arguments to ./manage.py runserver 'address:port'

Attachments (1)

add_devserver_settings.patch (5.7 KB ) - added by k0001 16 years ago.

Download all attachments as: .zip

Change History (3)

by k0001, 16 years ago

comment:1 by Russell Keith-Magee, 16 years ago

Resolution: wontfix
Status: newclosed

I don't see why this is desirable.

  • The command line option works fine
  • Django and Python both try to avoid having mutliple ways to do things.
  • The setting would only have an effect for the development server, not for any real deployment.

comment:2 by k0001, 16 years ago

Just a suggestion. I thought it could be interesting for someone...

Note: See TracTickets for help on using tickets.
Back to Top