|
5 | 5 | Generated by 'django-admin startproject' using Django 1.9. |
6 | 6 |
|
7 | 7 | For more information on this file, see |
8 | | -https://docs.djangoproject.com/en/1.9/topics/settings/ |
| 8 | +https://docs.djangoproject.com/en/3.2/topics/settings/ |
9 | 9 |
|
10 | 10 | For the full list of settings and their values, see |
11 | | -https://docs.djangoproject.com/en/1.9/ref/settings/ |
| 11 | +https://docs.djangoproject.com/en/3.2/ref/settings/ |
12 | 12 | """ |
13 | 13 |
|
14 | 14 | import os |
|
18 | 18 |
|
19 | 19 |
|
20 | 20 | # Quick-start development settings - unsuitable for production |
21 | | -# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/ |
| 21 | +# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ |
22 | 22 |
|
23 | 23 | # SECURITY WARNING: keep the secret key used in production secret! |
24 | 24 | SECRET_KEY = "_$=$%eqxk$8ss4n7mtgarw^5$8^d5+c83!vwatr@i_81myb=e4" |
|
81 | 81 |
|
82 | 82 |
|
83 | 83 | # Database |
84 | | -# https://docs.djangoproject.com/en/1.9/ref/settings/#databases |
| 84 | +# https://docs.djangoproject.com/en/3.2/ref/settings/#databases |
85 | 85 |
|
86 | 86 | DATABASES = { |
87 | 87 | "default": { |
|
90 | 90 | } |
91 | 91 | } |
92 | 92 |
|
| 93 | +# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field |
| 94 | +DEFAULT_AUTO_FIELD = "django.db.models.AutoField" |
93 | 95 |
|
94 | 96 | # Password validation |
95 | | -# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators |
| 97 | +# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators |
96 | 98 |
|
97 | 99 | AUTH_PASSWORD_VALIDATORS = [ |
98 | 100 | { |
|
105 | 107 |
|
106 | 108 |
|
107 | 109 | # Internationalization |
108 | | -# https://docs.djangoproject.com/en/1.9/topics/i18n/ |
| 110 | +# https://docs.djangoproject.com/en/3.2/topics/i18n/ |
109 | 111 |
|
110 | 112 | LANGUAGE_CODE = "en-us" |
111 | 113 |
|
|
119 | 121 |
|
120 | 122 |
|
121 | 123 | # Static files (CSS, JavaScript, Images) |
122 | | -# https://docs.djangoproject.com/en/1.9/howto/static-files/ |
| 124 | +# https://docs.djangoproject.com/en/3.2/howto/static-files/ |
123 | 125 |
|
124 | 126 | STATIC_URL = "/static/" |
0 commit comments