1 # Django settings for openlease project.
7 # ('Your Name', 'your_email@domain.com'),
12 DATABASE_ENGINE
= '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
13 DATABASE_NAME
= '' # 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.
19 # Local time zone for this installation. Choices can be found here:
20 # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
21 # although not all variations may be possible on all operating systems.
22 # If running in a Windows environment this must be set to the same as your
24 TIME_ZONE
= 'America/Chicago'
26 # Language code for this installation. All choices can be found here:
27 # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
28 # http://blogs.law.harvard.edu/tech/stories/storyReader$15
29 LANGUAGE_CODE
= 'en-us'
33 # If you set this to False, Django will make some optimizations so as not
34 # to load the internationalization machinery.
37 # Absolute path to the directory that holds media.
38 # Example: "/home/media/media.lawrence.com/"
41 # URL that handles the media served from MEDIA_ROOT.
42 # Example: "http://media.lawrence.com"
45 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
47 # Examples: "http://foo.com/media/", "/media/".
48 ADMIN_MEDIA_PREFIX
= '/media/'
50 # Make this unique, and don't share it with anybody.
51 SECRET_KEY
= 'd1s5@8ls4qet%4&&h*$r@h9nk8k6251zzph&ahpvkpuiarqek^'
53 # List of callables that know how to import templates from various sources.
55 'django.template.loaders.filesystem.load_template_source',
56 'django.template.loaders.app_directories.load_template_source',
57 # 'django.template.loaders.eggs.load_template_source',
60 MIDDLEWARE_CLASSES
= (
61 'django.middleware.common.CommonMiddleware',
62 'django.contrib.sessions.middleware.SessionMiddleware',
63 'django.contrib.auth.middleware.AuthenticationMiddleware',
64 'django.middleware.doc.XViewMiddleware',
67 ROOT_URLCONF
= 'openlease.urls'
70 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
71 # Always use forward slashes, even on Windows.
72 # Don't forget to use absolute paths, not relative paths.
76 'django.contrib.auth',
77 'django.contrib.contenttypes',
78 'django.contrib.sessions',
79 'django.contrib.sites',