import os import django BASE_DIR = os.path.dirname(os.path.abspath(__file__)) SECRET_KEY = 'iamaplop' DEBUG = True EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' SITE_ID = 1 INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.sites', 'django.contrib.staticfiles', 'widget_tweaks', # This one must be before 'allauth' to replace its templates. 'allauth_ens', 'allauth', 'allauth.account', 'allauth.socialaccount', 'allauth_cas', 'allauth.socialaccount.providers.facebook', 'allauth.socialaccount.providers.google', 'allauth_ens.providers.clipper', 'app', ] _MIDDLEWARES = [ 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.sites.middleware.CurrentSiteMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', ] if django.VERSION >= (1, 10): MIDDLEWARE = _MIDDLEWARES else: MIDDLEWARE_CLASSES = _MIDDLEWARES ROOT_URLCONF = 'urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'wsgi.application' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] LANGUAGE_CODE = 'en-us' TIME_ZONE = 'Europe/Paris' USE_I18N = True USE_L10N = True USE_TZ = True STATIC_URL = '/static/' AUTH_USER_MODEL = 'app.User' LOGIN_URL = '/account/login/' LOGIN_REDIRECT_URL = '/account/settings/' SOCIALACCOUNT_QUERY_EMAIL = True # allauth settings ACCOUNT_AUTHENTICATED_LOGIN_REDIRECTS = False