|
1 | 1 | """ |
2 | 2 | Django settings for setup project. |
3 | 3 |
|
4 | | -Generated by 'django-admin startproject' using Django 5.2.8. |
| 4 | +Generated by 'django-admin startproject' using Django 6.0. |
5 | 5 |
|
6 | 6 | For more information on this file, see |
7 | | -https://docs.djangoproject.com/en/5.2/topics/settings/ |
| 7 | +https://docs.djangoproject.com/en/6.0/topics/settings/ |
8 | 8 |
|
9 | 9 | For the full list of settings and their values, see |
10 | | -https://docs.djangoproject.com/en/5.2/ref/settings/ |
| 10 | +https://docs.djangoproject.com/en/6.0/ref/settings/ |
11 | 11 | """ |
12 | 12 |
|
13 | 13 | from pathlib import Path |
|
17 | 17 |
|
18 | 18 |
|
19 | 19 | # Quick-start development settings - unsuitable for production |
20 | | -# See https://docs.djangoproject.com/en/5.2/howto/deployment/checklist/ |
| 20 | +# See https://docs.djangoproject.com/en/6.0/howto/deployment/checklist/ |
21 | 21 |
|
22 | 22 | # SECURITY WARNING: keep the secret key used in production secret! |
23 | 23 | SECRET_KEY = ( |
24 | | - "django-insecure-*!3%6wxj1sa-i6g&&f+!w_jp^@fcuj=t^9wlg*%p=4b_r%f0q6" |
| 24 | + "django-insecure-avx+s!jrtg_6%qri+07#1dsa+mxtmk2kdf1cl_mofz*461mkq2" |
25 | 25 | ) |
26 | 26 |
|
27 | 27 | # SECURITY WARNING: don't run with debug turned on in production! |
|
72 | 72 |
|
73 | 73 |
|
74 | 74 | # Database |
75 | | -# https://docs.djangoproject.com/en/5.2/ref/settings/#databases |
| 75 | +# https://docs.djangoproject.com/en/6.0/ref/settings/#databases |
76 | 76 |
|
77 | 77 | DATABASES = { |
78 | 78 | "default": { |
|
83 | 83 |
|
84 | 84 |
|
85 | 85 | # Password validation |
86 | | -# https://docs.djangoproject.com/en/5.2/ref/settings/#auth-password-validators |
| 86 | +# https://docs.djangoproject.com/en/6.0/ref/settings/#auth-password-validators |
87 | 87 |
|
88 | 88 | AUTH_PASSWORD_VALIDATORS = [ |
89 | 89 | { |
|
102 | 102 |
|
103 | 103 |
|
104 | 104 | # Internationalization |
105 | | -# https://docs.djangoproject.com/en/5.2/topics/i18n/ |
| 105 | +# https://docs.djangoproject.com/en/6.0/topics/i18n/ |
106 | 106 |
|
107 | 107 | LANGUAGE_CODE = "en-us" |
108 | 108 |
|
|
114 | 114 |
|
115 | 115 |
|
116 | 116 | # Static files (CSS, JavaScript, Images) |
117 | | -# https://docs.djangoproject.com/en/5.2/howto/static-files/ |
| 117 | +# https://docs.djangoproject.com/en/6.0/howto/static-files/ |
118 | 118 |
|
119 | 119 | STATIC_URL = "static/" |
120 | | - |
121 | | -# Default primary key field type |
122 | | -# https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field |
123 | | - |
124 | | -DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" |
0 commit comments