6 # ('Your Name', 'your_email@domain.com'),
11 TIME_ZONE
= 'America/Chicago'
13 LANGUAGE_CODE
= 'fr-ca'
15 # Absolute path to the directory that holds media.
16 # Example: "/home/media/media.lawrence.com/"
17 MEDIA_ROOT
= os
.path
.join(os
.path
.dirname(__file__
), 'media')
19 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
20 # trailing slash if there is a path component (optional in other cases).
21 # Examples: "http://media.lawrence.com", "http://example.com/media/"
24 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
26 # Examples: "http://foo.com/media/", "/media/".
27 ADMIN_MEDIA_PREFIX
= '/admin_media/'
29 # Don't share this with anybody.
30 SECRET_KEY
= 'k5m_cyht&ipi!nbxng9-5zc!4_q84opflhsn#d3%^3=9gm44tt'
32 MIDDLEWARE_CLASSES
= (
33 'django.middleware.common.CommonMiddleware',
34 'django.contrib.sessions.middleware.SessionMiddleware',
35 'django.contrib.auth.middleware.AuthenticationMiddleware',
36 'django.middleware.doc.XViewMiddleware',
39 ROOT_URLCONF
= 'auf_savoirs_en_partage_django.urls'
43 'django.contrib.auth',
44 'django.contrib.contenttypes',
45 'django.contrib.sessions',
46 'django.contrib.admin',
48 'auf_roa_authentification_backend',
53 'django.template.loaders.filesystem.load_template_source',
54 'django.template.loaders.app_directories.load_template_source',
58 os
.path
.join(os
.path
.dirname(__file__
), "templates"),
61 AUTHENTICATION_BACKENDS
= (
62 'auf_roa_authentification_backend.backends.CascadeBackend',
64 AUTH_PASSWORD_REQUIRED
=True
65 ROA_MODELS
= True # set to False if you'd like to develop/test locally
68 'Content-Type': 'application/x-www-form-urlencoded',
70 ROA_DJANGO_ERRORS
= True # useful to ease debugging if you use test server
72 ROA_BASE_URL
= 'https://authentification.auf.org/auth/'
73 SERIALIZATION_MODULES
= {
74 'django' : 'auf_roa_authentification_backend.serializers',