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.postgresql',
 
  23 # Local time zone for this installation. Choices can be found here:
 
  24 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
 
  25 # although not all choices may be available on all operating systems.
 
  26 # On Unix systems, a value of None will cause Django to use the same
 
  27 # timezone as the operating system.
 
  28 # If running in a Windows environment this must be set to the same as your
 
  30 TIME_ZONE = 'Europe/Warsaw'
 
  32 # Language code for this installation. All choices can be found here:
 
  33 # http://www.i18nguy.com/unicode/language-identifiers.html
 
  38 # If you set this to False, Django will make some optimizations so as not
 
  39 # to load the internationalization machinery.
 
  42 # If you set this to False, Django will not format dates, numbers and
 
  43 # calendars according to the current locale
 
  46 # Absolute filesystem path to the directory that will hold user-uploaded files.
 
  47 # Example: "/home/media/media.lawrence.com/media/"
 
  48 MEDIA_ROOT = os.path.join(PROJECT_ROOT, '../media/')
 
  50 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
 
  52 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
 
  55 # Absolute path to the directory static files should be collected to.
 
  56 # Don't put anything in this directory yourself; store your static files
 
  57 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
 
  58 # Example: "/home/media/media.lawrence.com/static/"
 
  61 # URL prefix for static files.
 
  62 # Example: "http://media.lawrence.com/static/"
 
  63 STATIC_URL = '/static/'
 
  65 # URL prefix for admin static files -- CSS, JavaScript and images.
 
  66 # Make sure to use a trailing slash.
 
  67 # Examples: "http://foo.com/static/admin/", "/static/admin/".
 
  68 ADMIN_MEDIA_PREFIX = '/static/admin/'
 
  70 # Additional locations of static files
 
  72     # Put strings here, like "/home/html/static" or "C:/www/django/static".
 
  73     # Always use forward slashes, even on Windows.
 
  74     # Don't forget to use absolute paths, not relative paths.
 
  77 # List of finder classes that know how to find static files in
 
  79 STATICFILES_FINDERS = (
 
  80     'django.contrib.staticfiles.finders.FileSystemFinder',
 
  81     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
 
  82 #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
 
  85 # Make this unique, and don't share it with anybody.
 
  86 SECRET_KEY = '8ehk^-+pr(o)k6lh_gl9+ks6gkd9u#fka7fv%ikpk(c%llqa6%'
 
  90         'BACKEND': 'django.template.backends.django.DjangoTemplates',
 
  93             'context_processors': [
 
  94                 'django.template.context_processors.debug',
 
  95                 'django.template.context_processors.request',
 
  96                 'django.contrib.auth.context_processors.auth',
 
  97                 'django.contrib.messages.context_processors.messages',
 
 104     'django.middleware.common.CommonMiddleware',
 
 105     'django.contrib.sessions.middleware.SessionMiddleware',
 
 106     'django.middleware.csrf.CsrfViewMiddleware',
 
 107     'django.contrib.auth.middleware.AuthenticationMiddleware',
 
 108     'django_cas_ng.middleware.CASMiddleware',
 
 109     'django.contrib.messages.middleware.MessageMiddleware',
 
 110     "fnp_django_pagination.middleware.PaginationMiddleware",
 
 113 AUTHENTICATION_BACKENDS = (
 
 114     'django.contrib.auth.backends.ModelBackend',
 
 115     'django_cas_ng.backends.CASBackend',
 
 118 ROOT_URLCONF = 'audiobooks.urls'
 
 121     'django.contrib.auth',
 
 122     'django.contrib.contenttypes',
 
 123     'django.contrib.sessions',
 
 124     'django.contrib.sites',
 
 125     'django.contrib.messages',
 
 126     'django.contrib.staticfiles',
 
 127     'django.contrib.admin',
 
 128     # Uncomment the next line to enable admin documentation:
 
 129     # 'django.contrib.admindocs',
 
 135     "fnp_django_pagination",
 
 138 # A sample logging configuration. The only tangible logging
 
 139 # performed by this configuration is to send an email to
 
 140 # the site admins on every HTTP 500 error.
 
 141 # See http://docs.djangoproject.com/en/dev/topics/logging for
 
 142 # more details on how to customize your logging configuration.
 
 145     'disable_existing_loggers': False,
 
 147          'require_debug_false': {
 
 148              '()': 'django.utils.log.RequireDebugFalse'
 
 154             'filters': ['require_debug_false'],
 
 155             'class': 'django.utils.log.AdminEmailHandler'
 
 160             'handlers': ['mail_admins'],
 
 167 CAS_SERVER_URL = "https://logowanie.nowoczesnapolska.org.pl/cas/"
 
 170 EMAIL_SUBJECT_PREFIX = '[Audio] '
 
 171 SERVER_EMAIL = 'no-reply@audio.wolnelektury.pl'
 
 172 EMAIL_HOST = 'localhost'
 
 175 CELERY_BROKER_URL = 'redis://localhost:6379/0'
 
 178     from .localsettings import *