update Authentication API
[mygpo.git] / mygpo / settings.py
blob936ff1e97fcc00deb5db67b3ff732ada60e6fe88
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 DATABASES = {
34 'default': {
35 'NAME': 'mygpo',
36 'ENGINE': 'django.db.backends.sqlite3',
37 'USER': '',
38 'PASSWORD': '',
39 'HOST': '',
43 COUCHDB_DATABASES = (
44 ('mygpo.directory', 'http://127.0.0.1:5984/mygpo'),
45 ('mygpo.core', 'http://127.0.0.1:5984/mygpo'),
46 ('mygpo.users', 'http://127.0.0.1:5984/mygpo'),
47 ('mygpo.maintenance', 'http://127.0.0.1:5984/mygpo'),
48 ('django_couchdb_utils', 'http://127.0.0.1:5984/mygpo'),
52 # Local time zone for this installation. Choices can be found here:
53 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
54 # although not all choices may be available on all operating systems.
55 # If running in a Windows environment this must be set to the same as your
56 # system time zone.
57 TIME_ZONE = 'UTC'
59 # Language code for this installation. All choices can be found here:
60 # http://www.i18nguy.com/unicode/language-identifiers.html
61 LANGUAGE_CODE = 'en-us'
63 SITE_ID = 1
65 # If you set this to False, Django will make some optimizations so as not
66 # to load the internationalization machinery.
67 USE_I18N = True
69 # Absolute path to the directory that holds media.
70 # Example: "/home/media/media.lawrence.com/"
71 MEDIA_ROOT = os.path.abspath('%s/../htdocs/media/' % os.path.dirname(__file__))
73 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
74 # trailing slash if there is a path component (optional in other cases).
75 # Examples: "http://media.lawrence.com", "http://example.com/media/"
76 MEDIA_URL = ''
78 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
79 # trailing slash.
80 # Examples: "http://foo.com/media/", "/media/".
81 ADMIN_MEDIA_PREFIX = '/media/admin/'
83 # List of callables that know how to import templates from various sources.
84 TEMPLATE_LOADERS = (
85 'django.template.loaders.app_directories.Loader',
88 MIDDLEWARE_CLASSES = (
89 'django.middleware.common.CommonMiddleware',
90 'django.middleware.csrf.CsrfViewMiddleware',
91 'django.contrib.sessions.middleware.SessionMiddleware',
92 'django.contrib.auth.middleware.AuthenticationMiddleware',
93 'django.middleware.locale.LocaleMiddleware',
96 ROOT_URLCONF = 'mygpo.urls'
98 TEMPLATE_DIRS = ()
100 INSTALLED_APPS = (
101 'django.contrib.auth',
102 'django.contrib.sessions',
103 'django.contrib.humanize',
104 'registration',
105 'couchdbkit.ext.django',
106 'django_couchdb_utils',
107 'mygpo.core',
108 'mygpo.users',
109 'mygpo.api',
110 'mygpo.web',
111 'mygpo.publisher',
112 'mygpo.data',
113 'mygpo.userfeeds',
114 'mygpo.directory',
115 'mygpo.maintenance',
118 TEST_EXCLUDE = (
119 'django',
120 'registration',
123 TEST_RUNNER='mygpo.test.MygpoTestSuiteRunner'
125 ACCOUNT_ACTIVATION_DAYS = 7
127 AUTHENTICATION_BACKENDS = (
128 'django.contrib.auth.backends.ModelBackend',
129 'mygpo.web.auth.EmailAuthenticationBackend',
132 TEMPLATE_CONTEXT_PROCESSORS = (
133 "django.contrib.auth.context_processors.auth",
134 "django.core.context_processors.debug",
135 "django.core.context_processors.i18n",
136 "django.core.context_processors.media",
137 "django.contrib.messages.context_processors.messages",
138 "mygpo.web.googleanalytics.processor",
142 AUTH_PROFILE_MODULE = "api.UserProfile"
144 LOGIN_URL = '/login/'
146 CSRF_FAILURE_VIEW='mygpo.web.views.security.csrf_failure'
149 # The following entries should be set in settings_prod.py
150 DEFAULT_FROM_EMAIL = ''
151 SECRET_KEY = ''
152 GOOGLE_ANALYTICS_PROPERTY_ID=''
153 DIRECTORY_EXCLUDED_TAGS = ()
154 FLICKR_API_KEY = ''
156 MAINTENANCE = os.path.exists(os.path.join(BASE_DIR, 'MAINTENANCE'))
158 EMAIL_BACKEND = 'django_couchdb_utils.email.backends.CouchDBEmailBackend'
160 # minimum number of subscribers a podcast must have to be assigned a slug
161 PODCAST_SLUG_SUBSCRIBER_LIMIT = 10
163 try:
164 from settings_prod import *
165 except ImportError, e:
166 import sys
167 print >> sys.stderr, 'create settings_prod.py with your customized settings'