Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

glegoux/django-settings-startup

Repository files navigation

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.

Latest 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.

Changelog

See CHANGELOG.

Read The Docs : Documentation

GitHub : Source Code

PyPI : open source Python packages

Travis CI : continous integration

Coveralls : code coverage

PyLint : source code bug

PEP8 : coding style

Useful links

License

See LICENSE.