1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# A list of plugins to add to INSTALLED_APPS. You'll need to install relevant
# packages into your environment manually.
plugins = []
# Additional middleware to add between AuthenticationMiddleware and
# OTPMiddleware. For more complex configs, you can override MIDDLEWARE entirely
# under [settings].
middleware = []
# The value of DATABASES["default"].
[database]
ENGINE = "django.db.backends.postgresql"
NAME = "django-otp"
USER = "postgres"
# Any other settings to add.
[settings]
MY_SETTING = "my-value"
|