2bfd81b1e0c2d32d1b2e440651aafdd48b629db8
[mygpo.git] / mygpo / settings.py
blob2bfd81b1e0c2d32d1b2e440651aafdd48b629db8
1 # Django settings for mygpo project.
3 # This file is part of my.gpodder.org.
5 # my.gpodder.org is free software: you can redistribute it and/or modify it
6 # under the terms of the GNU Affero General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or (at your
8 # option) any later version.
10 # my.gpodder.org is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
13 # License for more details.
15 # You should have received a copy of the GNU Affero General Public License
16 # along with my.gpodder.org. If not, see <http://www.gnu.org/licenses/>.
19 import os.path
21 BASE_DIR = os.path.dirname(os.path.abspath(__file__))
23 # http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#ChangedthewayURLpathsaredetermined
24 FORCE_SCRIPT_NAME=""
26 DEBUG = True
27 TEMPLATE_DEBUG = DEBUG
29 ADMINS = ()
31 MANAGERS = ADMINS
33 # dummy entry.
34 # not needed for production, but tests fail otherwise in Django 1.4
35 DATABASES = {
36 'default': {
37 'ENGINE': 'django.db.backends.sqlite3',
38 'NAME': 'tmp',
42 COUCHDB_DATABASES = {
43 'mygpo.directory':
44 {'URL': 'http://127.0.0.1:5984/mygpo'},
46 'mygpo.core':
47 {'URL': 'http://127.0.0.1:5984/mygpo'},
49 'mygpo.api':
50 {'URL': 'http://127.0.0.1:5984/mygpo'},
52 'mygpo.users':
53 {'URL': 'http://127.0.0.1:5984/mygpo'},
55 'mygpo.share':
56 {'URL': 'http://127.0.0.1:5984/mygpo'},
58 'mygpo.maintenance':
59 {'URL': 'http://127.0.0.1:5984/mygpo'},
61 'mygpo.pubsub':
62 {'URL': 'http://127.0.0.1:5984/mygpo_pubsub'},
64 'django_couchdb_utils_auth':
65 {'URL': 'http://127.0.0.1:5984/mygpo'},
67 'django_couchdb_utils_sessions':
68 {'URL': 'http://127.0.0.1:5984/mygpo_sessions'},
70 'django_couchdb_utils_registration':
71 {'URL': 'http://127.0.0.1:5984/mygpo'},
73 'mygpo.categories':
74 {'URL': 'http://127.0.0.1:5984/mygpo_categories'},
77 # Maps design documents to databases. The keys correspond to the directories in
78 # mygpo/couch/, the values are the app labels which are mapped to the actual
79 # databases in COUCHDB_DATABASES. This indirect mapping is used because
80 # COUCHDB_DATABASES is likely to be overwritten in settings_prod.py while
81 # COUCHDB_DDOC_MAPPING is most probably not overwritten.
82 COUCHDB_DDOC_MAPPING = {
83 'general': 'core',
84 'categories': 'categories',
85 'pubsub': 'pubsub',
88 # Local time zone for this installation. Choices can be found here:
89 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
90 # although not all choices may be available on all operating systems.
91 # If running in a Windows environment this must be set to the same as your
92 # system time zone.
93 TIME_ZONE = 'UTC'
95 # Language code for this installation. All choices can be found here:
96 # http://www.i18nguy.com/unicode/language-identifiers.html
97 LANGUAGE_CODE = 'en-us'
99 SITE_ID = 1
101 # If you set this to False, Django will make some optimizations so as not
102 # to load the internationalization machinery.
103 USE_I18N = True
105 STATIC_ROOT = 'staticfiles'
106 STATIC_URL = '/static/'
108 STATICFILES_DIRS = (
109 os.path.abspath(os.path.join(BASE_DIR, '..', 'htdocs', 'media')),
112 # List of callables that know how to import templates from various sources.
113 TEMPLATE_LOADERS = (
114 'django.template.loaders.app_directories.Loader',
117 MIDDLEWARE_CLASSES = (
118 'django.middleware.cache.UpdateCacheMiddleware',
119 'django.middleware.common.CommonMiddleware',
120 'django.middleware.csrf.CsrfViewMiddleware',
121 'django.middleware.cache.FetchFromCacheMiddleware',
122 'django.contrib.sessions.middleware.SessionMiddleware',
123 'django.contrib.auth.middleware.AuthenticationMiddleware',
124 'django.middleware.locale.LocaleMiddleware',
125 'django.contrib.messages.middleware.MessageMiddleware',
128 ROOT_URLCONF = 'mygpo.urls'
130 TEMPLATE_DIRS = ()
132 INSTALLED_APPS = (
133 'django.contrib.contenttypes', # unused, but tests fail otherwise (?)
134 'django.contrib.messages',
135 'django.contrib.humanize',
136 'django.contrib.staticfiles',
137 'couchdbkit.ext.django',
138 'django_couchdb_utils.auth',
139 'django_couchdb_utils.sessions',
140 'django_couchdb_utils.registration',
141 'mygpo.core',
142 'mygpo.users',
143 'mygpo.api',
144 'mygpo.web',
145 'mygpo.publisher',
146 'mygpo.data',
147 'mygpo.userfeeds',
148 'mygpo.directory',
149 'mygpo.maintenance',
150 'mygpo.share',
151 'mygpo.admin',
152 'mygpo.pubsub',
153 'mygpo.db.couchdb',
156 TEST_EXCLUDE = (
157 'django',
158 'couchdbkit',
161 TEST_RUNNER='mygpo.test.MygpoTestSuiteRunner'
163 ACCOUNT_ACTIVATION_DAYS = 7
165 AUTHENTICATION_BACKENDS = (
166 'django_couchdb_utils.auth.backends.CouchDBAuthBackend',
167 'mygpo.web.auth.EmailAuthenticationBackend',
170 SESSION_ENGINE = "django_couchdb_utils.sessions.cached_couchdb"
172 TEMPLATE_CONTEXT_PROCESSORS = (
173 "django.contrib.auth.context_processors.auth",
174 "django.core.context_processors.debug",
175 "django.core.context_processors.i18n",
176 "django.core.context_processors.media",
177 "django.contrib.messages.context_processors.messages",
178 "mygpo.web.google.analytics",
179 "mygpo.web.google.adsense",
182 MESSAGE_STORAGE = 'django.contrib.messages.storage.session.SessionStorage'
184 USER_CLASS = 'mygpo.users.models.User'
186 LOGIN_URL = '/login/'
188 CSRF_FAILURE_VIEW='mygpo.web.views.security.csrf_failure'
191 # The following entries should be set in settings_prod.py
192 DEFAULT_FROM_EMAIL = ''
193 SECRET_KEY = ''
194 GOOGLE_ANALYTICS_PROPERTY_ID=''
195 DIRECTORY_EXCLUDED_TAGS = ()
196 FLICKR_API_KEY = ''
198 MAINTENANCE = os.path.exists(os.path.join(BASE_DIR, 'MAINTENANCE'))
200 EMAIL_BACKEND = 'django_couchdb_utils.email.backends.CouchDBEmailBackend'
203 LOGGING = {
204 'version': 1,
205 'disable_existing_loggers': True,
206 'formatters': {
207 'verbose': {
208 'format': '%(asctime)s %(name)s %(levelname)s %(message)s',
211 'filters': {
212 'require_debug_false': {
213 '()': 'django.utils.log.RequireDebugFalse'
216 'handlers': {
217 'console':{
218 'level': 'DEBUG',
219 'class': 'logging.StreamHandler',
220 'formatter': 'verbose'
222 'mail_admins': {
223 'level': 'ERROR',
224 'filters': ['require_debug_false'],
225 'class': 'django.utils.log.AdminEmailHandler'
228 'loggers': {
229 'django': {
230 'handlers': ['console'],
231 'propagate': True,
232 'level': 'WARN',
234 'mygpo': {
235 'handlers': ['console'],
236 'level': 'INFO',
241 # minimum number of subscribers a podcast must have to be assigned a slug
242 PODCAST_SLUG_SUBSCRIBER_LIMIT = 10
244 # minimum number of subscribers that a podcast needs to "push" one of its
245 # categories to the top
246 MIN_SUBSCRIBERS_CATEGORY=10
248 # maximum number of episode actions that the API processes immediatelly before
249 # returning the response. Larger requests will be handled in background.
250 # Handler can be set to None to disable
251 API_ACTIONS_MAX_NONBG=100
252 API_ACTIONS_BG_HANDLER='mygpo.api.tasks.episode_actions_celery_handler'
255 ADSENSE_CLIENT = ''
256 ADSENSE_SLOT_BOTTOM = ''
258 # enabled access to staff-only areas with ?staff=<STAFF_TOKEN>
259 STAFF_TOKEN = None
261 # Flattr settings -- available after you register your app
262 FLATTR_KEY = ''
263 FLATTR_SECRET = ''
265 # Flattr thing of the webservice. Will be flattr'd when a user sets the "Auto-Flattr gpodder.net" option
266 FLATTR_MYGPO_THING='https://flattr.com/submit/auto?user_id=stefankoegl&url=http://gpodder.net'
268 # The User-Agent string used for outgoing HTTP requests
269 USER_AGENT = 'gpodder.net (+https://github.com/gpodder/mygpo)'
271 # Base URL of the website that is used if the actually used parameters is not
272 # available. Request handlers, for example, can access the requested domain.
273 # Code that runs in background can not do this, and therefore requires a
274 # default value. This should be set to something like 'http://example.com'
275 DEFAULT_BASE_URL = ''
278 ### Celery
280 BROKER_URL='redis://localhost'
281 BACKEND_URL='redis://localhost'
284 # a dictionary containing celery settings from
285 # http://docs.celeryproject.org/en/latest/configuration.html
286 CELERY_CONF = dict(
287 CELERY_SEND_TASK_ERROR_EMAILS = True,
288 ADMINS=ADMINS,
289 SERVER_EMAIL = "no-reply@example.com",
293 ### Google API
295 GOOGLE_CLIENT_ID=''
296 GOOGLE_CLIENT_SECRET=''
300 try:
301 from settings_prod import *
302 except ImportError, e:
303 import sys
304 print >> sys.stderr, 'create settings_prod.py with your customized settings'