[TASK] Add MEDIA_ROOT to configuration, create media folder.
This commit is contained in:
parent
e1203390bd
commit
988771a219
|
@ -75,6 +75,8 @@ STATIC_ROOT = os.path.join(BASE_DIR, "static")
|
|||
STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
|
||||
STATICFILES_DIRS = (os.path.join(BASE_DIR, 'contrib'),)
|
||||
|
||||
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
|
||||
|
||||
PIPELINE_COMPILERS = (
|
||||
'pipeline.compilers.less.LessCompiler',
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue