Pamela Fox
commited on
Commit
·
e12f469
1
Parent(s):
9fa14ce
Rm unneded whitenoise option
Browse files- src/quizsite/settings.py +0 -3
src/quizsite/settings.py
CHANGED
@@ -22,7 +22,6 @@ env = environ.Env(
|
|
22 |
DBSSL=(str, "disable"),
|
23 |
ADMIN_URL=(str, "admin/"),
|
24 |
STATIC_BACKEND=(str, "django.contrib.staticfiles.storage.StaticFilesStorage"),
|
25 |
-
WHITENOISE_MANIFEST_STRICT=(bool, False),
|
26 |
)
|
27 |
|
28 |
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
@@ -161,8 +160,6 @@ STORAGES = {
|
|
161 |
}
|
162 |
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
|
163 |
|
164 |
-
WHITENOISE_MANIFEST_STRICT = env("WHITENOISE_MANIFEST_STRICT")
|
165 |
-
|
166 |
# Default primary key field type
|
167 |
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
|
168 |
|
|
|
22 |
DBSSL=(str, "disable"),
|
23 |
ADMIN_URL=(str, "admin/"),
|
24 |
STATIC_BACKEND=(str, "django.contrib.staticfiles.storage.StaticFilesStorage"),
|
|
|
25 |
)
|
26 |
|
27 |
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
|
160 |
}
|
161 |
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
|
162 |
|
|
|
|
|
163 |
# Default primary key field type
|
164 |
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
|
165 |
|