Configuring production settings for postgresql #67 and PyLibMemCache #31
[oweals/karmaworld.git] / karmaworld / settings / common.py
1 #!/usr/bin/env python
2 # -*- coding:utf8 -*-
3 # Copyright (C) 2012  FinalsClub Foundation
4 """ Common settings and globals. """
5
6
7 from datetime import timedelta
8 from os.path import abspath, basename, dirname, join, normpath
9 from sys import path
10
11 from djcelery import setup_loader
12
13
14 ########## PATH CONFIGURATION
15 # Absolute filesystem path to the Django project directory:
16 DJANGO_ROOT = dirname(dirname(abspath(__file__)))
17
18 # Absolute filesystem path to the top-level project folder:
19 SITE_ROOT = dirname(DJANGO_ROOT)
20
21 # Site name:
22 SITE_NAME = basename(DJANGO_ROOT)
23
24 # Add our project to our pythonpath, this way we don't need to type our project
25 # name in our dotted import paths:
26 path.append(DJANGO_ROOT)
27 ########## END PATH CONFIGURATION
28
29
30 ########## DEBUG CONFIGURATION
31 # See: https://docs.djangoproject.com/en/dev/ref/settings/#debug
32 DEBUG = False
33
34 # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-debug
35 TEMPLATE_DEBUG = DEBUG
36 ########## END DEBUG CONFIGURATION
37
38
39 ########## MANAGER CONFIGURATION
40 # See: https://docs.djangoproject.com/en/dev/ref/settings/#admins
41 ADMINS = (
42     ('Seth Woodworth', 'seth@finalsclub.org'),
43     ('Charles Holbrow', 'charles@finalsclub.org'),
44     ('Andrew Magliozzi', 'andrew@finalsclub.org'),
45 )
46
47 # See: https://docs.djangoproject.com/en/dev/ref/settings/#managers
48 MANAGERS = ADMINS
49 ########## END MANAGER CONFIGURATION
50
51
52 ########## DATABASE CONFIGURATION
53 # See: https://docs.djangoproject.com/en/dev/ref/settings/#databases
54 DATABASES = {
55     'default': {
56         'ENGINE': 'django.db.backends.',
57         'NAME': '',
58         'USER': '',
59         'PASSWORD': '',
60         'HOST': '',
61         'PORT': '',
62     }
63 }
64 ########## END DATABASE CONFIGURATION
65
66
67 ########## GENERAL CONFIGURATION
68 # See: https://docs.djangoproject.com/en/dev/ref/settings/#time-zone
69 TIME_ZONE = 'America/New_York'
70
71 # See: https://docs.djangoproject.com/en/dev/ref/settings/#language-code
72 LANGUAGE_CODE = 'en-us'
73
74 # See: https://docs.djangoproject.com/en/dev/ref/settings/#site-id
75 SITE_ID = 1
76
77 # See: https://docs.djangoproject.com/en/dev/ref/settings/#use-i18n
78 USE_I18N = True
79
80 # See: https://docs.djangoproject.com/en/dev/ref/settings/#use-l10n
81 USE_L10N = True
82 ########## END GENERAL CONFIGURATION
83
84
85 ########## MEDIA CONFIGURATION
86 # See: https://docs.djangoproject.com/en/dev/ref/settings/#media-root
87 MEDIA_ROOT = normpath(join(DJANGO_ROOT, 'media'))
88
89 # See: https://docs.djangoproject.com/en/dev/ref/settings/#media-url
90 MEDIA_URL = '/media/'
91 ########## END MEDIA CONFIGURATION
92
93
94 ########## STATIC FILE CONFIGURATION
95 # See: https://docs.djangoproject.com/en/dev/ref/settings/#static-root
96 STATIC_ROOT = normpath(join(DJANGO_ROOT, 'static'))
97
98 # See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url
99 STATIC_URL = '/static/'
100
101 # See: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#std:setting-STATICFILES_DIRS
102 STATICFILES_DIRS = (
103     normpath(join(DJANGO_ROOT, 'assets')),
104 )
105
106 # See: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#staticfiles-finders
107 STATICFILES_FINDERS = (
108     'django.contrib.staticfiles.finders.FileSystemFinder',
109     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
110     'compressor.finders.CompressorFinder',
111 )
112 ########## END STATIC FILE CONFIGURATION
113
114
115 ########## SECRET CONFIGURATION
116 # See: https://docs.djangoproject.com/en/dev/ref/settings/#secret-key
117 SECRET_KEY = r"(s1k!&^7l28k&nrm2ek(qqo&19%y(zn#=^zq_*ur2@irjun0x4"
118 ########## END SECRET CONFIGURATION
119
120
121 ########## FIXTURE CONFIGURATION
122 # See: https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-FIXTURE_DIRS
123 FIXTURE_DIRS = (
124     normpath(join(DJANGO_ROOT, 'fixtures')),
125 )
126 ########## END FIXTURE CONFIGURATION
127
128
129 ########## TEMPLATE CONFIGURATION
130 # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-context-processors
131 TEMPLATE_CONTEXT_PROCESSORS = (
132     'django.contrib.auth.context_processors.auth',
133     'django.core.context_processors.debug',
134     'django.core.context_processors.i18n',
135     'django.core.context_processors.media',
136     'django.core.context_processors.static',
137     'django.core.context_processors.tz',
138     'django.contrib.messages.context_processors.messages',
139     'django.core.context_processors.request',
140 )
141
142 # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-loaders
143 TEMPLATE_LOADERS = (
144     'django.template.loaders.filesystem.Loader',
145     'django.template.loaders.app_directories.Loader',
146 )
147
148 # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-dirs
149 TEMPLATE_DIRS = (
150     normpath(join(DJANGO_ROOT, 'templates')),
151 )
152 ########## END TEMPLATE CONFIGURATION
153
154
155 ########## MIDDLEWARE CONFIGURATION
156 # See: https://docs.djangoproject.com/en/dev/ref/settings/#middleware-classes
157 MIDDLEWARE_CLASSES = (
158     # Use GZip compression to reduce bandwidth.
159     'django.middleware.gzip.GZipMiddleware',
160
161     # Default Django middleware.
162     'django.middleware.common.CommonMiddleware',
163     'django.contrib.sessions.middleware.SessionMiddleware',
164     'django.middleware.csrf.CsrfViewMiddleware',
165     'django.contrib.auth.middleware.AuthenticationMiddleware',
166     'django.contrib.messages.middleware.MessageMiddleware',
167 )
168 ########## END MIDDLEWARE CONFIGURATION
169
170
171 ########## URL CONFIGURATION
172 # See: https://docs.djangoproject.com/en/dev/ref/settings/#root-urlconf
173 ROOT_URLCONF = '%s.urls' % SITE_NAME
174 ########## END URL CONFIGURATION
175
176
177 ########## APP CONFIGURATION
178 DJANGO_APPS = (
179     # Default Django apps:
180     'django.contrib.auth',
181     'django.contrib.contenttypes',
182     'django.contrib.sessions',
183     'django.contrib.sites',
184     'django.contrib.messages',
185     'django.contrib.staticfiles',
186
187     # Useful template tags:
188     'django.contrib.humanize',
189
190     # grappelli django-admin improvment, must be added before admin
191     'grappelli',
192
193     # Admin panel and documentation:
194     'django.contrib.admin',
195     'django.contrib.admindocs',
196 )
197
198 THIRD_PARTY_APPS = (
199     # Database migration helpers:
200     'south',
201
202     # Static file management:
203     'compressor',
204
205     # Asynchronous task queue:
206     'djcelery',
207
208     # Tagging https://github.com/yedpodtrzitko/django-taggit
209     'taggit',
210 )
211
212 LOCAL_APPS = (
213     # file handling app
214     'karmaworld.apps.notes',
215     'karmaworld.apps.courses',
216     'karmaworld.apps.ajaxuploader',
217 )
218
219 # See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
220 INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
221 ########## END APP CONFIGURATION
222
223
224 ########## LOGGING CONFIGURATION
225 # See: https://docs.djangoproject.com/en/dev/ref/settings/#logging
226 LOGGING = {
227     'version': 1,
228     'disable_existing_loggers': False,
229     'handlers': {
230         'mail_admins': {
231             'level': 'ERROR',
232             'class': 'django.utils.log.AdminEmailHandler'
233         }
234     },
235     'loggers': {
236         'django.request': {
237             'handlers': ['mail_admins'],
238             'level': 'ERROR',
239             'propagate': True,
240         },
241     }
242 }
243 ########## END LOGGING CONFIGURATION
244
245
246 ########## CELERY CONFIGURATION
247 # See: http://celery.readthedocs.org/en/latest/configuration.html#celery-task-result-expires
248 CELERY_TASK_RESULT_EXPIRES = timedelta(minutes=30)
249
250 # See: http://celery.github.com/celery/django/
251 setup_loader()
252 ########## END CELERY CONFIGURATION
253
254
255 ########## WSGI CONFIGURATION
256 # See: https://docs.djangoproject.com/en/dev/ref/settings/#wsgi-application
257 WSGI_APPLICATION = 'wsgi.application'
258 ########## END WSGI CONFIGURATION
259
260
261 ########## COMPRESSION CONFIGURATION
262 # See: http://django_compressor.readthedocs.org/en/latest/settings/#django.conf.settings.COMPRESS_ENABLED
263 COMPRESS_ENABLED = True
264
265 # See: http://django_compressor.readthedocs.org/en/latest/settings/#django.conf.settings.COMPRESS_CSS_FILTERS
266 COMPRESS_CSS_FILTERS = [
267     'compressor.filters.template.TemplateFilter',
268 ]
269
270 # See: http://django_compressor.readthedocs.org/en/latest/settings/#django.conf.settings.COMPRESS_JS_FILTERS
271 COMPRESS_JS_FILTERS = [
272     'compressor.filters.template.TemplateFilter',
273 ]
274 ########## END COMPRESSION CONFIGURATION
275
276 ########## TAGGIT CONFIGURATION
277 # From https://github.com/yedpodtrzitko/django-taggit
278
279 # Use lowercase tags
280 TAGGIT_FORCE_LOWERCASE = True
281
282 # Ignore common stopwords
283 TAGGIT_STOPWORDS = [u'a', u'an', u'and', u'be', u'from', u'of']
284
285 ########## END TAGGIT CONFIGURATION
286