[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_STORAGE = 'pipeline.storage.PipelineCachedStorage'
|
||||||
STATICFILES_DIRS = (os.path.join(BASE_DIR, 'contrib'),)
|
STATICFILES_DIRS = (os.path.join(BASE_DIR, 'contrib'),)
|
||||||
|
|
||||||
|
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
|
||||||
|
|
||||||
PIPELINE_COMPILERS = (
|
PIPELINE_COMPILERS = (
|
||||||
'pipeline.compilers.less.LessCompiler',
|
'pipeline.compilers.less.LessCompiler',
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue