|
1 | 1 | """
|
2 | 2 | Django settings for hello_django project.
|
3 | 3 |
|
4 |
| -Generated by 'django-admin startproject' using Django 2.2.6. |
| 4 | +Generated by 'django-admin startproject' using Django 3.0.5. |
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 os
|
|
17 | 17 |
|
18 | 18 |
|
19 | 19 | # Quick-start development settings - unsuitable for production
|
20 |
| -# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ |
| 20 | +# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ |
21 | 21 |
|
22 | 22 | SECRET_KEY = os.environ.get("SECRET_KEY")
|
23 | 23 |
|
|
73 | 73 |
|
74 | 74 |
|
75 | 75 | # Database
|
76 |
| -# https://docs.djangoproject.com/en/2.2/ref/settings/#databases |
| 76 | +# https://docs.djangoproject.com/en/3.0/ref/settings/#databases |
77 | 77 |
|
78 | 78 | DATABASES = {
|
79 | 79 | "default": {
|
|
88 | 88 |
|
89 | 89 |
|
90 | 90 | # Password validation
|
91 |
| -# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators |
| 91 | +# https://docs.djangoproject.com/en/3.0/ref/settings/#auth-password-validators |
92 | 92 |
|
93 | 93 | AUTH_PASSWORD_VALIDATORS = [
|
94 | 94 | {
|
|
107 | 107 |
|
108 | 108 |
|
109 | 109 | # Internationalization
|
110 |
| -# https://docs.djangoproject.com/en/2.2/topics/i18n/ |
| 110 | +# https://docs.djangoproject.com/en/3.0/topics/i18n/ |
111 | 111 |
|
112 | 112 | LANGUAGE_CODE = 'en-us'
|
113 | 113 |
|
|
121 | 121 |
|
122 | 122 |
|
123 | 123 | # Static files (CSS, JavaScript, Images)
|
124 |
| -# https://docs.djangoproject.com/en/2.2/howto/static-files/ |
| 124 | +# https://docs.djangoproject.com/en/3.0/howto/static-files/ |
125 | 125 |
|
126 | 126 | STATIC_URL = "/staticfiles/"
|
127 | 127 | STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
|
|
0 commit comments