Django Settings On Startup

See your chosen settings on standard output when django is starting with runserver command with an additional CLI option.

For Django 1.8.5 and Python 2.7, 3.2, 3.3, 3.4.

Python package information

pypi-stability pypi-version pypi-pythonversion pypi-implementation pypi-build

Other information

travis-status doc license pypi-download

Usage

Once installed, using this command:

python manage.py runserver --config

Additional CLI Options

--config Show your settings on standard output.

Please see python manage.py runserver --help for more information additional options.

Install

  1. Download package:

    pip install django-settings-startup
    
  2. Add “django_settings_startup” in first rank to your INSTALLED_APPS settings like this:

    INSTALLED_APPS = [
        'django_settings_startup',
        ...
    ]
    

It is important to install this app in first (before native django apps), to override the command runserver.

Version

see VERSION

License

see LICENSE