11"""
22Django settings for agent project.
33
4- Generated by 'django-admin startproject' using Django 4.2.16.
4+ Generated by 'django-admin startproject' using Django 4.2.16; upgraded to Django 5.2 LTS .
55
66For more information on this file, see
7- https://docs.djangoproject.com/en/4 .2/topics/settings/
7+ https://docs.djangoproject.com/en/5 .2/topics/settings/
88
99For the full list of settings and their values, see
10- https://docs.djangoproject.com/en/4 .2/ref/settings/
10+ https://docs.djangoproject.com/en/5 .2/ref/settings/
1111"""
1212
1313import os
@@ -36,7 +36,7 @@ def load_yaml(filepath, native_k8s_connector_mode=False):
3636
3737
3838# Quick-start development settings - unsuitable for production
39- # See https://docs.djangoproject.com/en/4 .2/howto/deployment/checklist/
39+ # See https://docs.djangoproject.com/en/5 .2/howto/deployment/checklist/
4040
4141# SECURITY WARNING: keep the secret key used in production secret!
4242SECRET_KEY = env .str ("DJANGO_SECRET_KEY" , default = 'django-insecure-3-9*i+n@+)07+$lde6v%+705m+jz9_v9r6##qizm+0&x%)963g' )
@@ -102,7 +102,7 @@ def load_yaml(filepath, native_k8s_connector_mode=False):
102102WSGI_APPLICATION = 'agent.wsgi.application'
103103
104104# Database
105- # https://docs.djangoproject.com/en/4 .2/ref/settings/#databases
105+ # https://docs.djangoproject.com/en/5 .2/ref/settings/#databases
106106
107107DATABASES = {
108108 'default' : {
@@ -205,7 +205,7 @@ def load_yaml(filepath, native_k8s_connector_mode=False):
205205REDIS_URL = env .str ('REDIS_URL' , default = 'redis://localhost:6379' )
206206
207207# Password validation
208- # https://docs.djangoproject.com/en/4 .2/ref/settings/#auth-password-validators
208+ # https://docs.djangoproject.com/en/5 .2/ref/settings/#auth-password-validators
209209
210210AUTH_PASSWORD_VALIDATORS = [
211211 {
@@ -223,7 +223,7 @@ def load_yaml(filepath, native_k8s_connector_mode=False):
223223]
224224
225225# Internationalization
226- # https://docs.djangoproject.com/en/4 .2/topics/i18n/
226+ # https://docs.djangoproject.com/en/5 .2/topics/i18n/
227227
228228LANGUAGE_CODE = 'en-us'
229229
@@ -234,13 +234,13 @@ def load_yaml(filepath, native_k8s_connector_mode=False):
234234USE_TZ = True
235235
236236# Static files (CSS, JavaScript, Images)
237- # https://docs.djangoproject.com/en/4.1 /howto/static-files/
237+ # https://docs.djangoproject.com/en/5.2 /howto/static-files/
238238
239239STATIC_URL = 'static/'
240240STATIC_ROOT = os .path .join (BASE_DIR , "static" )
241241
242242# Default primary key field type
243- # https://docs.djangoproject.com/en/4 .2/ref/settings/#default-auto-field
243+ # https://docs.djangoproject.com/en/5 .2/ref/settings/#default-auto-field
244244
245245DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
246246
0 commit comments