File: sample.toml

package info (click to toggle)
python-django-otp 1.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 772 kB
  • sloc: python: 3,344; makefile: 140
file content (18 lines) | stat: -rw-r--r-- 512 bytes parent folder | download | duplicates (2)
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"