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