1 | # Django settings for persisted project.
|
---|
2 |
|
---|
3 | import os
|
---|
4 | PROJECT_HOME = os.path.dirname(__file__)
|
---|
5 |
|
---|
6 | DEBUG = True
|
---|
7 | TEMPLATE_DEBUG = DEBUG
|
---|
8 |
|
---|
9 | ADMINS = (
|
---|
10 | # ('Your Name', 'your_email@domain.com'),
|
---|
11 | )
|
---|
12 |
|
---|
13 | MANAGERS = ADMINS
|
---|
14 |
|
---|
15 | DATABASES = {
|
---|
16 | 'default': {
|
---|
17 | 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
|
---|
18 | 'NAME': 'project_heatmap', # Or path to database file if using sqlite3.
|
---|
19 | 'USER': 'root', # Not used with sqlite3.
|
---|
20 | 'PASSWORD': 'password', # Not used with sqlite3.
|
---|
21 | 'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3.
|
---|
22 | 'PORT': '3306', # Set to empty string for default. Not used with sqlite3.
|
---|
23 | }
|
---|
24 | }
|
---|
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.
|
---|
31 | TIME_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
|
---|
35 | LANGUAGE_CODE = 'en-us'
|
---|
36 |
|
---|
37 | SITE_ID = 1
|
---|
38 |
|
---|
39 | # If you set this to False, Django will make some optimizations so as not
|
---|
40 | # to load the internationalization machinery.
|
---|
41 | USE_I18N = True
|
---|
42 |
|
---|
43 | # Absolute path to the directory that holds media.
|
---|
44 | # Example: "/home/media/media.lawrence.com/"
|
---|
45 | MEDIA_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/"
|
---|
50 | MEDIA_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/".
|
---|
55 | ADMIN_MEDIA_PREFIX = '/media/'
|
---|
56 |
|
---|
57 | # Make this unique, and don't share it with anybody.
|
---|
58 | SECRET_KEY = '=wg@x19kr@26sibiaynb9ax5ddp1&yu^+$3n++^_lz1ms80syb'
|
---|
59 |
|
---|
60 | # List of callables that know how to import templates from various sources.
|
---|
61 | TEMPLATE_LOADERS = (
|
---|
62 | 'django.template.loaders.filesystem.load_template_source',
|
---|
63 | 'django.template.loaders.app_directories.load_template_source',
|
---|
64 | # 'django.template.loaders.eggs.load_template_source',
|
---|
65 | )
|
---|
66 |
|
---|
67 | MIDDLEWARE_CLASSES = (
|
---|
68 | 'django.middleware.common.CommonMiddleware',
|
---|
69 | 'django.contrib.sessions.middleware.SessionMiddleware',
|
---|
70 | 'django.contrib.auth.middleware.AuthenticationMiddleware',
|
---|
71 | )
|
---|
72 |
|
---|
73 | ROOT_URLCONF = 'persisted.urls'
|
---|
74 |
|
---|
75 | TEMPLATE_DIRS = (
|
---|
76 | # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
|
---|
77 | # Always use forward slashes, even on Windows.
|
---|
78 | # Don't forget toABQIAAAA6NuvWGazX80RVrkSkvrUXBQuY05VDPolZO1YI32txJLc5t1HWBRafKMBWIXOpS9wazP_0ErZiNd8_g use absolute paths, not relative paths.
|
---|
79 | os.path.join(PROJECT_HOME, 'templates'),
|
---|
80 |
|
---|
81 | )
|
---|
82 |
|
---|
83 | INSTALLED_APPS = (
|
---|
84 | 'django.contrib.auth',
|
---|
85 | 'django.contrib.contenttypes',
|
---|
86 | 'django.contrib.sessions',
|
---|
87 | 'django.contrib.sites',
|
---|
88 | 'gheat',
|
---|
89 | 'django_extensions',
|
---|
90 | 'home',
|
---|
91 | 'django.contrib.admin',
|
---|
92 | )
|
---|
93 |
|
---|
94 | #GOOGLE_MAPS_KEY = 'ABQIAAAA2icoFs7d_hisx8EBdZy-mxQF3fr7joqA35-x6JbT4Kx-pk-_6xRkPVambEqUO33n_8g9KWVaLKq8UA' # localhost
|
---|
95 | #GOOGLE_MAPS_KEY = 'ABQIAAAAnfs7bKE82qgb3Zc2YyS-oBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxSySz_REpPq-4WZA27OwgbtyR3VcA' # external ip
|
---|
96 | GOOGLE_MAPS_KEY = 'ABQIAAAA6NuvWGazX80RVrkSkvrUXBTpH3CbXHjuCVmaTc5MkkU4wO1RRhSZXiYEMqjgwJ9gi_PC8AA-dDGz6g' # 127.0.0.1:8000
|
---|
97 |
|
---|
98 |
|
---|
99 |
|
---|