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

Last change on this file since 9113 was 9113, checked in by dennisw, 14 years ago

Supports OpenLayers/OpenStreetMap instead of Google Maps.

File size: 4.2 KB
RevLine 
[9006]1# Django settings for persisted project.
2
3import os
4PROJECT_HOME = os.path.dirname(__file__)
5
6DEBUG = True
7TEMPLATE_DEBUG = DEBUG
8
9ADMINS = (
[9051]10 ('Test Admin', 'admin@example.org'),
[9006]11)
12
13MANAGERS = ADMINS
14
[9026]15DATABASES = {
16 'default': {
[9051]17 'ENGINE': 'django.db.backends.mysql',
18 'NAME': 'project_heatmap',
19 'USER': 'root',
20 'PASSWORD': 'password',
21 'HOST': 'localhost',
22 'PORT': '3306',
[9026]23 }
24}
[9006]25
26# Local time zone for this installation. Choices can be found here:
27# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
28# although not all choices may be available on all operating systems.
29# If running in a Windows environment this must be set to the same as your
30# system time zone.
31TIME_ZONE = 'America/Chicago'
32
33# Language code for this installation. All choices can be found here:
34# http://www.i18nguy.com/unicode/language-identifiers.html
35LANGUAGE_CODE = 'en-us'
36
37SITE_ID = 1
38
39# If you set this to False, Django will make some optimizations so as not
40# to load the internationalization machinery.
41USE_I18N = True
42
43# Absolute path to the directory that holds media.
44# Example: "/home/media/media.lawrence.com/"
45MEDIA_ROOT = ''
46
47# URL that handles the media served from MEDIA_ROOT. Make sure to use a
48# trailing slash if there is a path component (optional in other cases).
49# Examples: "http://media.lawrence.com", "http://example.com/media/"
50MEDIA_URL = ''
51
52# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
53# trailing slash.
54# Examples: "http://foo.com/media/", "/media/".
55ADMIN_MEDIA_PREFIX = '/media/'
56
[9113]57# Absolute path to the directory static files should be collected to.
58# Don't put anything in this directory yourself; store your static files
59# in apps' "static/" subdirectories and in STATICFILES_DIRS.
60# Example: "/home/media/media.lawrence.com/static/"
61STATIC_ROOT = ''
62
63# URL prefix for static files.
64# Example: "http://media.lawrence.com/static/"
65STATIC_URL = '/static/'
66
67# URL prefix for admin static files -- CSS, JavaScript and images.
68# Make sure to use a trailing slash.
69# Examples: "http://foo.com/static/admin/", "/static/admin/".
70ADMIN_MEDIA_PREFIX = '/static/admin/'
71
72# Additional locations of static files
73STATICFILES_DIRS = (
74 '/home/dennis/Desktop/django_gheat/samples/persisted/static',
75 # Put strings here, like "/home/html/static" or "C:/www/django/static".
76 # Always use forward slashes, even on Windows.
77 # Don't forget to use absolute paths, not relative paths.
78)
79
80# List of finder classes that know how to find static files in
81# various locations.
82STATICFILES_FINDERS = (
83 'django.contrib.staticfiles.finders.FileSystemFinder',
84 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
85# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
86)
87
88
89
[9006]90# Make this unique, and don't share it with anybody.
91SECRET_KEY = '=wg@x19kr@26sibiaynb9ax5ddp1&yu^+$3n++^_lz1ms80syb'
92
93# List of callables that know how to import templates from various sources.
94TEMPLATE_LOADERS = (
95 'django.template.loaders.filesystem.load_template_source',
96 'django.template.loaders.app_directories.load_template_source',
[9051]97 'django.template.loaders.eggs.load_template_source',
[9006]98)
99
100MIDDLEWARE_CLASSES = (
101 'django.middleware.common.CommonMiddleware',
102 'django.contrib.sessions.middleware.SessionMiddleware',
103 'django.contrib.auth.middleware.AuthenticationMiddleware',
104)
105
106ROOT_URLCONF = 'persisted.urls'
107
108TEMPLATE_DIRS = (
109 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
110 # Always use forward slashes, even on Windows.
[9051]111 # Don't forget to use absolute paths, not relative paths.
[9006]112 os.path.join(PROJECT_HOME, 'templates'),
113)
114
115INSTALLED_APPS = (
[9051]116 'django.contrib.admin',
[9006]117 'django.contrib.auth',
118 'django.contrib.contenttypes',
119 'django.contrib.sessions',
120 'django.contrib.sites',
[9051]121 'django_extensions',
[9006]122 'gheat',
123 'home',
[9113]124 'django.contrib.staticfiles',
[9006]125)
126
127#GOOGLE_MAPS_KEY = 'ABQIAAAA2icoFs7d_hisx8EBdZy-mxQF3fr7joqA35-x6JbT4Kx-pk-_6xRkPVambEqUO33n_8g9KWVaLKq8UA' # localhost
128#GOOGLE_MAPS_KEY = 'ABQIAAAAnfs7bKE82qgb3Zc2YyS-oBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxSySz_REpPq-4WZA27OwgbtyR3VcA' # external ip
129GOOGLE_MAPS_KEY = 'ABQIAAAA6NuvWGazX80RVrkSkvrUXBTpH3CbXHjuCVmaTc5MkkU4wO1RRhSZXiYEMqjgwJ9gi_PC8AA-dDGz6g' # 127.0.0.1:8000
Note: See TracBrowser for help on using the repository browser.