App

Django app config for the confirm app.

class confirm.django.apps.ConfirmConfig(app_name, app_module)

The Django app config for the confirm app.

To use the confirm.django Python module as Django app, simply configure your Django project to use this config by adding the following entry to the INSTALLED_APPS list:

INSTALLED_APPS = [
    # existing apps…
    'confirm.django.apps.ConfirmConfig',
]

This will enable the confirm Django app and will give you access to the following things:

  • StatusView: A custom view to check the readyness of the Django app

  • loaddemodata: A custom management command to load demo data fixtures