|
@@ -1,13 +1,13 @@
|
1
|
1
|
"""
|
2
|
2
|
Django settings for this project.
|
3
|
3
|
|
4
|
|
-Generated by 'django-admin startproject' using Django 2.2.3.
|
|
4
|
+Generated by 'django-admin startproject' using Django 3.0.3.
|
5
|
5
|
|
6
|
6
|
For more information on this file, see
|
7
|
|
-https://docs.djangoproject.com/en/2.2/topics/settings/
|
|
7
|
+https://docs.djangoproject.com/en/3.0/topics/settings/
|
8
|
8
|
|
9
|
9
|
For the full list of settings and their values, see
|
10
|
|
-https://docs.djangoproject.com/en/2.2/ref/settings/
|
|
10
|
+https://docs.djangoproject.com/en/3.0/ref/settings/
|
11
|
11
|
"""
|
12
|
12
|
|
13
|
13
|
import config
|
|
@@ -47,7 +47,7 @@ for property_name in USER_CONFIG_DEFAULTS:
|
47
|
47
|
setattr(thismodule, property_name, value)
|
48
|
48
|
|
49
|
49
|
# Quick-start development settings - unsuitable for production
|
50
|
|
-# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
|
|
50
|
+# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
|
51
|
51
|
|
52
|
52
|
# SECURITY WARNING: keep the secret key used in production secret!
|
53
|
53
|
#
|
|
@@ -114,7 +114,7 @@ WSGI_APPLICATION = 'main.wsgi.application'
|
114
|
114
|
|
115
|
115
|
|
116
|
116
|
# Database
|
117
|
|
-# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
|
|
117
|
+# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
|
118
|
118
|
#
|
119
|
119
|
DATABASES = {
|
120
|
120
|
'default': {
|
|
@@ -125,7 +125,7 @@ DATABASES = {
|
125
|
125
|
|
126
|
126
|
|
127
|
127
|
# Password validation
|
128
|
|
-# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators
|
|
128
|
+# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators
|
129
|
129
|
#
|
130
|
130
|
AUTH_PASSWORD_VALIDATORS = [
|
131
|
131
|
{
|
|
@@ -149,7 +149,7 @@ WHOOSH_PATH = os.path.join(BASE_DIR, 'data', 'whoosh_index')
|
149
|
149
|
|
150
|
150
|
|
151
|
151
|
# Internationalization
|
152
|
|
-# https://docs.djangoproject.com/en/2.2/topics/i18n/
|
|
152
|
+# https://docs.djangoproject.com/en/3.0/topics/i18n/
|
153
|
153
|
#
|
154
|
154
|
LANGUAGE_CODE = 'en-us'
|
155
|
155
|
LANGUAGES = [
|
|
@@ -172,7 +172,7 @@ USE_TZ = True
|
172
|
172
|
|
173
|
173
|
|
174
|
174
|
# Static files (CSS, JavaScript, Images)
|
175
|
|
-# https://docs.djangoproject.com/en/2.2/howto/static-files/
|
|
175
|
+# https://docs.djangoproject.com/en/3.0/howto/static-files/
|
176
|
176
|
#
|
177
|
177
|
STATIC_ROOT = os.path.join(BASE_DIR, 'data', 'static')
|
178
|
178
|
STATIC_URL = '/static/'
|