1 # Django settings for audiobooks project.
4 PROJECT_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
11 # ('Your Name', 'your_email@example.com'),
18 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
19 'NAME': os.path.join(PROJECT_ROOT, 'dev.sqlite'), # Or path to database file if using sqlite3.
20 'USER': '', # Not used with sqlite3.
21 'PASSWORD': '', # Not used with sqlite3.
22 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
23 'PORT': '', # Set to empty string for default. Not used with sqlite3.
27 # Local time zone for this installation. Choices can be found here:
28 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
29 # although not all choices may be available on all operating systems.
30 # On Unix systems, a value of None will cause Django to use the same
31 # timezone as the operating system.
32 # If running in a Windows environment this must be set to the same as your
34 TIME_ZONE = 'Europe/Warsaw'
36 # Language code for this installation. All choices can be found here:
37 # http://www.i18nguy.com/unicode/language-identifiers.html
42 # If you set this to False, Django will make some optimizations so as not
43 # to load the internationalization machinery.
46 # If you set this to False, Django will not format dates, numbers and
47 # calendars according to the current locale
50 # Absolute filesystem path to the directory that will hold user-uploaded files.
51 # Example: "/home/media/media.lawrence.com/media/"
52 MEDIA_ROOT = os.path.join(PROJECT_ROOT, '../media/')
54 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
56 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
59 # Absolute path to the directory static files should be collected to.
60 # Don't put anything in this directory yourself; store your static files
61 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
62 # Example: "/home/media/media.lawrence.com/static/"
65 # URL prefix for static files.
66 # Example: "http://media.lawrence.com/static/"
67 STATIC_URL = '/static/'
69 # URL prefix for admin static files -- CSS, JavaScript and images.
70 # Make sure to use a trailing slash.
71 # Examples: "http://foo.com/static/admin/", "/static/admin/".
72 ADMIN_MEDIA_PREFIX = '/static/admin/'
74 # Additional locations of static files
76 # Put strings here, like "/home/html/static" or "C:/www/django/static".
77 # Always use forward slashes, even on Windows.
78 # Don't forget to use absolute paths, not relative paths.
81 # List of finder classes that know how to find static files in
83 STATICFILES_FINDERS = (
84 'django.contrib.staticfiles.finders.FileSystemFinder',
85 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
86 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
89 # Make this unique, and don't share it with anybody.
90 SECRET_KEY = '8ehk^-+pr(o)k6lh_gl9+ks6gkd9u#fka7fv%ikpk(c%llqa6%'
94 'BACKEND': 'django.template.backends.django.DjangoTemplates',
97 'context_processors': [
98 'django.template.context_processors.debug',
99 'django.template.context_processors.request',
100 'django.contrib.auth.context_processors.auth',
101 'django.contrib.messages.context_processors.messages',
107 MIDDLEWARE_CLASSES = (
108 'django.middleware.common.CommonMiddleware',
109 'django.contrib.sessions.middleware.SessionMiddleware',
110 'django.middleware.csrf.CsrfViewMiddleware',
111 'django.contrib.auth.middleware.AuthenticationMiddleware',
112 'django_cas_ng.middleware.CASMiddleware',
113 'django.contrib.messages.middleware.MessageMiddleware',
116 AUTHENTICATION_BACKENDS = (
117 'django.contrib.auth.backends.ModelBackend',
118 'django_cas_ng.backends.CASBackend',
121 ROOT_URLCONF = 'audiobooks.urls'
124 'django.contrib.auth',
125 'django.contrib.contenttypes',
126 'django.contrib.sessions',
127 'django.contrib.sites',
128 'django.contrib.messages',
129 'django.contrib.staticfiles',
130 'django.contrib.admin',
131 # Uncomment the next line to enable admin documentation:
132 # 'django.contrib.admindocs',
140 # A sample logging configuration. The only tangible logging
141 # performed by this configuration is to send an email to
142 # the site admins on every HTTP 500 error.
143 # See http://docs.djangoproject.com/en/dev/topics/logging for
144 # more details on how to customize your logging configuration.
147 'disable_existing_loggers': False,
149 'require_debug_false': {
150 '()': 'django.utils.log.RequireDebugFalse'
156 'filters': ['require_debug_false'],
157 'class': 'django.utils.log.AdminEmailHandler'
162 'handlers': ['mail_admins'],
169 CAS_SERVER_URL = "https://logowanie.nowoczesnapolska.org.pl/cas/"
172 EMAIL_SUBJECT_PREFIX = '[Audio] '
173 SERVER_EMAIL = 'no-reply@audio.wolnelektury.pl'
174 EMAIL_HOST = 'localhost'
177 CELERY_BROKER_URL = 'redis://localhost:6379/0'
180 from .localsettings import *