feat(settings): Make MEDIA_ROOT configurable
This commit is contained in:
parent
7537b26fbe
commit
76c07e3086
1 changed files with 2 additions and 1 deletions
|
@ -177,7 +177,8 @@ STATICFILES_FINDERS = [
|
|||
"sass_processor.finders.CssFinder",
|
||||
]
|
||||
|
||||
STATIC_ROOT = credentials["STATIC_ROOT"]
|
||||
STATIC_ROOT = credentials.get("STATIC_ROOT")
|
||||
MEDIA_ROOT = credentials.get("MEDIA_ROOT")
|
||||
|
||||
###
|
||||
# Storages configuration
|
||||
|
|
Loading…
Reference in a new issue