Ticket #9678: settings.py

File settings.py, 3.1 KB (added by watusee, 15 years ago)

Settings.py

Line 
1# Django settings for watusee project.
2
3DEBUG = True
4TEMPLATE_DEBUG = DEBUG
5
6ADMINS = (
7 # ('Raymond Burket', 'raymond@watusee.com'),
8)
9
10MANAGERS = ADMINS
11
12DATABASE_ENGINE = 'mysql' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
13DATABASE_NAME = '' # Or path to database file if using sqlite3.
14DATABASE_USER = '' # Not used with sqlite3.
15DATABASE_PASSWORD = '' # Not used with sqlite3.
16DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
17DATABASE_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# If running in a Windows environment this must be set to the same as your
23# system time zone.
24TIME_ZONE = 'America/Denver'
25
26# Language code for this installation. All choices can be found here:
27# http://www.i18nguy.com/unicode/language-identifiers.html
28LANGUAGE_CODE = 'en-us'
29
30SITE_ID = 3
31
32APPEND_SLASH = True
33
34# If you set this to False, Django will make some optimizations so as not
35# to load the internationalization machinery.
36USE_I18N = True
37
38# Absolute path to the directory that holds media.
39# Example: "/home/media/media.lawrence.com/"
40MEDIA_ROOT = '/home2/mainderay/webapps/site_media/watusee/'
41
42# URL that handles the media served from MEDIA_ROOT. Make sure to use a
43# trailing slash if there is a path component (optional in other cases).
44# Examples: "http://media.lawrence.com", "http://example.com/media/"
45MEDIA_URL = 'http://www.watusee.com/media/watusee/'
46
47# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
48# trailing slash.
49# Examples: "http://foo.com/media/", "/media/".
50ADMIN_MEDIA_PREFIX = '/media/admin/'
51
52# Make this unique, and don't share it with anybody.
53SECRET_KEY = ''
54
55# List of callables that know how to import templates from various sources.
56TEMPLATE_LOADERS = (
57 'django.template.loaders.filesystem.load_template_source',
58 'django.template.loaders.app_directories.load_template_source',
59# 'django.template.loaders.eggs.load_template_source',
60)
61
62MIDDLEWARE_CLASSES = (
63 'django.middleware.common.CommonMiddleware',
64 'django.contrib.sessions.middleware.SessionMiddleware',
65 'django.contrib.auth.middleware.AuthenticationMiddleware',
66 'django.middleware.doc.XViewMiddleware',
67 'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
68)
69
70ROOT_URLCONF = 'watusee.urls'
71
72TEMPLATE_DIRS = (
73 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
74 # Always use forward slashes, even on Windows.
75 # Don't forget to use absolute paths, not relative paths.
76 '/home2/mainderay/webapps/watusee/watusee/templates'
77)
78
79INSTALLED_APPS = (
80 'django.contrib.auth',
81 'django.contrib.contenttypes',
82 'django.contrib.sessions',
83 'django.contrib.sites',
84 'django.contrib.admin',
85 'django.contrib.flatpages',
86 'django.contrib.markup',
87 'watusee.work',
88)
Back to Top