mark base model as abstract
[matthijs/upstream/django-ldapdb.git] / settings.py
1 # Django settings for django-ldapdb project.
2
3 DEBUG = True
4 TEMPLATE_DEBUG = DEBUG
5
6 ADMINS = (
7     # ('Your Name', 'your_email@domain.com'),
8 )
9
10 MANAGERS = ADMINS
11
12 DATABASE_ENGINE = 'sqlite3'    # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
13 DATABASE_NAME = 'ldapdb.db'    # Or path to database file if using sqlite3.
14 DATABASE_USER = ''             # Not used with sqlite3.
15 DATABASE_PASSWORD = ''         # Not used with sqlite3.
16 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
17 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
18
19 # Local time zone for this installation. Choices can be found here:
20 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
21 # although not all choices may be available on all operating systems.
22 # On Unix systems, a value of None will cause Django to use the same
23 # timezone as the operating system.
24 # If running in a Windows environment this must be set to the same as your
25 # system time zone.
26 TIME_ZONE = 'America/Chicago'
27
28 # Language code for this installation. All choices can be found here:
29 # http://www.i18nguy.com/unicode/language-identifiers.html
30 LANGUAGE_CODE = 'en-us'
31
32 SITE_ID = 1
33
34 # If you set this to False, Django will make some optimizations so as not
35 # to load the internationalization machinery.
36 USE_I18N = True
37
38 # If you set this to False, Django will not format dates, numbers and
39 # calendars according to the current locale
40 USE_L10N = True
41
42 # Absolute filesystem path to the directory that will hold user-uploaded files.
43 # Example: "/home/media/media.lawrence.com/"
44 MEDIA_ROOT = ''
45
46 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
47 # trailing slash if there is a path component (optional in other cases).
48 # Examples: "http://media.lawrence.com", "http://example.com/media/"
49 MEDIA_URL = ''
50
51 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
52 # trailing slash.
53 # Examples: "http://foo.com/media/", "/media/".
54 ADMIN_MEDIA_PREFIX = '/media/'
55
56 # Make this unique, and don't share it with anybody.
57 SECRET_KEY = 'some_random_secret_key'
58
59 # List of callables that know how to import templates from various sources.
60 TEMPLATE_LOADERS = (
61     'django.template.loaders.filesystem.load_template_source',
62     'django.template.loaders.app_directories.load_template_source',
63 #     'django.template.loaders.eggs.load_template_source',
64 )
65
66 MIDDLEWARE_CLASSES = (
67     'django.middleware.common.CommonMiddleware',
68     'django.contrib.sessions.middleware.SessionMiddleware',
69     'django.contrib.auth.middleware.AuthenticationMiddleware',
70 )
71
72 ROOT_URLCONF = 'urls'
73
74 TEMPLATE_DIRS = (
75     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
76     # Always use forward slashes, even on Windows.
77     # Don't forget to use absolute paths, not relative paths.
78 )
79
80 INSTALLED_APPS = (
81     'django.contrib.auth',
82     'django.contrib.contenttypes',
83     'django.contrib.sessions',
84     'django.contrib.sites',
85     'ldapdb',
86     'examples',
87     'django.contrib.admin',
88 )
89
90 LDAPDB_BIND_DN="cn=admin,dc=nodomain"
91 LDAPDB_BIND_PASSWORD="test"
92 LDAPDB_SERVER_URI="ldap://"