File: settings.py

package info (click to toggle)
django-auth-ldap 1.2.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 700 kB
  • ctags: 472
  • sloc: python: 1,763; makefile: 89
file content (16 lines) | stat: -rw-r--r-- 466 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': 'testproject/test.db3'
    }
}
INSTALLED_APPS = ["django_auth_ldap",
                  "django.contrib.auth",
                  "django.contrib.contenttypes",
                  "django.contrib.admin",
                  "django.contrib.sites",
                  "django.contrib.sessions",
                  ]
SITE_ID = 1
ROOT_URLCONF = "testproject.urls"
SECRET_KEY = "1"