source: src/django_gheat/samples/persisted/settings.py@ 9007

Last change on this file since 9007 was 9006, checked in by dennisw, 15 years ago

django_gheat - versie van gheat die gebruik maakt van django framework, ondersteunt SQL connecties in tegenstelling tot gheat dat gebruik maakt van sqlite

File size: 3.3 KB
Line 
1# Django settings for persisted project.
2
3import os
4PROJECT_HOME = os.path.dirname(__file__)
5
6DEBUG = True
7TEMPLATE_DEBUG = DEBUG
8
9ADMINS = (
10 # ('Your Name', 'your_email@domain.com'),
11)
12
13MANAGERS = ADMINS
14
15DATABASE_ENGINE = 'postgresql_psycopg2' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
16DATABASE_NAME = '' # Or path to database file if using sqlite3.
17DATABASE_USER = '' # Not used with sqlite3.
18DATABASE_PASSWORD = '' # Not used with sqlite3.
19DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
20DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
21
22# Local time zone for this installation. Choices can be found here:
23# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
24# although not all choices may be available on all operating systems.
25# If running in a Windows environment this must be set to the same as your
26# system time zone.
27TIME_ZONE = 'America/Chicago'
28
29# Language code for this installation. All choices can be found here:
30# http://www.i18nguy.com/unicode/language-identifiers.html
31LANGUAGE_CODE = 'en-us'
32
33SITE_ID = 1
34
35# If you set this to False, Django will make some optimizations so as not
36# to load the internationalization machinery.
37USE_I18N = True
38
39# Absolute path to the directory that holds media.
40# Example: "/home/media/media.lawrence.com/"
41MEDIA_ROOT = ''
42
43# URL that handles the media served from MEDIA_ROOT. Make sure to use a
44# trailing slash if there is a path component (optional in other cases).
45# Examples: "http://media.lawrence.com", "http://example.com/media/"
46MEDIA_URL = ''
47
48# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
49# trailing slash.
50# Examples: "http://foo.com/media/", "/media/".
51ADMIN_MEDIA_PREFIX = '/media/'
52
53# Make this unique, and don't share it with anybody.
54SECRET_KEY = '=wg@x19kr@26sibiaynb9ax5ddp1&yu^+$3n++^_lz1ms80syb'
55
56# List of callables that know how to import templates from various sources.
57TEMPLATE_LOADERS = (
58 'django.template.loaders.filesystem.load_template_source',
59 'django.template.loaders.app_directories.load_template_source',
60# 'django.template.loaders.eggs.load_template_source',
61)
62
63MIDDLEWARE_CLASSES = (
64 'django.middleware.common.CommonMiddleware',
65 'django.contrib.sessions.middleware.SessionMiddleware',
66 'django.contrib.auth.middleware.AuthenticationMiddleware',
67)
68
69ROOT_URLCONF = 'persisted.urls'
70
71TEMPLATE_DIRS = (
72 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
73 # Always use forward slashes, even on Windows.
74 # Don't forget toABQIAAAA6NuvWGazX80RVrkSkvrUXBQuY05VDPolZO1YI32txJLc5t1HWBRafKMBWIXOpS9wazP_0ErZiNd8_g use absolute paths, not relative paths.
75 os.path.join(PROJECT_HOME, 'templates'),
76
77)
78
79INSTALLED_APPS = (
80 'django.contrib.auth',
81 'django.contrib.contenttypes',
82 'django.contrib.sessions',
83 'django.contrib.sites',
84 'gheat',
85 'django_extensions',
86 'home',
87)
88
89#GOOGLE_MAPS_KEY = 'ABQIAAAA2icoFs7d_hisx8EBdZy-mxQF3fr7joqA35-x6JbT4Kx-pk-_6xRkPVambEqUO33n_8g9KWVaLKq8UA' # localhost
90#GOOGLE_MAPS_KEY = 'ABQIAAAAnfs7bKE82qgb3Zc2YyS-oBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxSySz_REpPq-4WZA27OwgbtyR3VcA' # external ip
91GOOGLE_MAPS_KEY = 'ABQIAAAA6NuvWGazX80RVrkSkvrUXBTpH3CbXHjuCVmaTc5MkkU4wO1RRhSZXiYEMqjgwJ9gi_PC8AA-dDGz6g' # 127.0.0.1:8000
92
93
94
Note: See TracBrowser for help on using the repository browser.