Make LOGGING setting configurable via environment variable
All checks were successful
Ruff / ruff (push) Successful in 29s
Test / test (push) Successful in 5m10s

This commit is contained in:
Adam Goldsmith 2024-05-04 20:34:36 -04:00
parent 0944dd7992
commit 04ca92b5fe

View File

@ -109,7 +109,8 @@ class Base(Configuration):
STATIC_URL = "/static/"
STATICFILES_DIRS = [BASE_DIR / "static"]
LOGGING = {
LOGGING = values.DictValue(
{
"version": 1,
"disable_existing_loggers": False,
"handlers": {
@ -124,6 +125,7 @@ class Base(Configuration):
},
},
}
)
MEDIA_ROOT = "media"
MEDIA_URL = "media/"