django-rest-auth/tests/settings.py

78 lines
2.2 KiB
Python
Raw Normal View History

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
2014-05-02 22:53:42 +04:00
}
}
2014-05-02 22:53:42 +04:00
2017-12-05 08:39:32 +03:00
MIDDLEWARE = [
2014-10-02 14:39:47 +04:00
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware'
]
2016-06-28 21:14:05 +03:00
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
'OPTIONS': {
2019-04-18 05:56:52 +03:00
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.media',
'django.core.context_processors.request',
'django.contrib.messages.context_processors.messages',
'django.core.context_processors.static',
"allauth.account.context_processors.account",
"allauth.socialaccount.context_processors.socialaccount",
],
2016-06-28 21:14:05 +03:00
},
},
]
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
'rest_framework.authentication.SessionAuthentication',
'rest_framework_jwt.authentication.JSONWebTokenAuthentication',
)
}
2014-05-02 22:53:42 +04:00
INSTALLED_APPS = [
2014-05-02 23:58:41 +04:00
'django.contrib.admin',
2014-05-02 23:03:25 +04:00
'django.contrib.auth',
2014-05-03 01:47:28 +04:00
'django.contrib.humanize',
2014-05-02 23:58:41 +04:00
'django.contrib.contenttypes',
'django.contrib.sessions',
2014-05-03 01:47:28 +04:00
'django.contrib.sites',
'django.contrib.sitemaps',
'django.contrib.staticfiles',
2014-05-02 23:58:41 +04:00
'allauth',
'allauth.account',
'allauth.socialaccount',
'allauth.socialaccount.providers.facebook',
'allauth.socialaccount.providers.twitter',
2014-05-02 23:58:41 +04:00
'rest_framework',
'rest_framework.authtoken',
2014-05-02 22:53:42 +04:00
'rest_auth',
'rest_auth.registration',
'rest_framework_jwt'
2014-05-02 22:53:42 +04:00
]
SECRET_KEY = "38dh*skf8sjfhs287dh&^hd8&3hdg*j2&sd"
2014-05-02 23:58:41 +04:00
ACCOUNT_ACTIVATION_DAYS = 1
2014-05-03 01:47:28 +04:00
SITE_ID = 1
2016-06-28 21:14:05 +03:00
AUTHENTICATION_BACKENDS = (
# Needed to login by username in Django admin, regardless of `allauth`
'django.contrib.auth.backends.ModelBackend',
# `allauth` specific authentication methods, such as login by e-mail
'allauth.account.auth_backends.AuthenticationBackend',
)