This commit is contained in:
Eugene Pankov
2021-06-12 13:05:35 +02:00
parent 04ddd11dfc
commit dc69574c07
27 changed files with 1162 additions and 81 deletions

View File

@@ -37,6 +37,9 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'channels',
'rest_framework',
'terminus.app',
]
MIDDLEWARE = [
@@ -67,6 +70,7 @@ TEMPLATES = [
},
]
ASGI_APPLICATION = 'terminus.asgi.application'
WSGI_APPLICATION = 'terminus.wsgi.application'
@@ -99,6 +103,7 @@ AUTH_PASSWORD_VALIDATORS = [
},
]
AUTH_USER_MODEL = 'app.User'
# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/