Changeset 59b2e9c for MuiscOrganizationSystem/settings.py
- Timestamp:
- 05/01/25 21:17:02 (2 weeks ago)
- Branches:
- master
- Children:
- ac66823
- Parents:
- 4abe330
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
MuiscOrganizationSystem/settings.py
r4abe330 r59b2e9c 16 16 BASE_DIR = Path(__file__).resolve().parent.parent 17 17 18 19 18 # Quick-start development settings - unsuitable for production 20 19 # See https://docs.djangoproject.com/en/5.1/howto/deployment/checklist/ … … 27 26 28 27 ALLOWED_HOSTS = [] 29 30 28 31 29 # Application definition … … 49 47 "django.contrib.messages.middleware.MessageMiddleware", 50 48 "django.middleware.clickjacking.XFrameOptionsMiddleware", 49 'music.middleware.Redirect404ToHomeMiddleware', 51 50 ] 52 51 … … 72 71 WSGI_APPLICATION = "MuiscOrganizationSystem.wsgi.application" 73 72 74 75 73 # Database 76 74 # https://docs.djangoproject.com/en/5.1/ref/settings/#databases … … 94 92 } 95 93 96 97 94 # Password validation 98 95 # https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators … … 113 110 ] 114 111 115 116 112 # Internationalization 117 113 # https://docs.djangoproject.com/en/5.1/topics/i18n/ … … 125 121 USE_TZ = True 126 122 127 128 123 # Static files (CSS, JavaScript, Images) 129 124 # https://docs.djangoproject.com/en/5.1/howto/static-files/
Note:
See TracChangeset
for help on using the changeset viewer.