dump_django_settings

This module provides a Django management command to print out all Django settings.

(key and value pairs) currently loaded for the running project.

Classes

Command

Implements the logic for the manage.py dump_django_settings command.

Functionality

  • Iterates through all attributes of the Django settings object.

  • Prints settings where the attribute name is all uppercase (standard for Django settings).

  • Can be used for debugging or environment introspection.

Usage Example

python manage.py dump_django_settings

class smarter.apps.account.management.commands.dump_django_settings.Command(*args, **kwargs)[source]

Bases: SmarterCommand

Add an email address to the Account Contact list.

handle(*args, **options)[source]

Dump all Django settings.