Skip to main content

django-settings-list

A simple, reusable Django app that lists the settings values for a deployed or running project using a custom admin view accessible only by superusers.

Technically, admin is not required, but by default the Settings List view is styled similarly to Django Admin.

Installation

  1. Make the settings_list module available in your Python environment.

  2. Make the settings_list/templates/ directory available in your project, either by adding settings_list to INSTALLED_APPS and enabling the app_directories template loader, or by specifying the path manually in TEMPLATE_DIRS.

  3. Add a URL pattern for the settings_list.views.settings_list view. For example:

    (r'^admin/settings/$', 'settings_list.views.settings_list'),

Keeping private settings private

Django Settings List uses django.views.debug.get_safe_settings, which obfuscates “secret” settings (currently, any setting with a name containing SECRET, PASSWORD, PROFANITIES_LIST, or SIGNATURE). This is the same filter used by the debug traceback reporter.

You can also manually specify additional settings to keep private by adding a PRIVATE_SETTINGS setting to your project. For example:

PRIVATE_SETTINGS = [
    'AUTHNET_MERCHANT_ID',
    'AUTHNET_TRANSACTION_KEY',
    'AWS_ACCESS_KEY_ID',
    'AWS_SECRET_ACCESS_KEY',
]

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-settings-list-0.1.2.tar.gz (3.1 kB view details)

Uploaded Source

File details

Details for the file django-settings-list-0.1.2.tar.gz.

File metadata

File hashes

Hashes for django-settings-list-0.1.2.tar.gz
Algorithm Hash digest
SHA256 3fdc03f6c440469de580201f9daae5682964e4038b669f864acd52b44a6be7e7
MD5 8fd97f1c6a8ea347ffa32a0b28712a89
BLAKE2b-256 817eff9c2abd487caf43bae3e6a19f7895db6af12df5de832ad45f8abddee216

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.2 This release

1 file

0.1.1

1 file

0.1

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page