Fix default storage
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
parent
196dbc8275
commit
a5aff5ff21
|
@ -197,6 +197,9 @@ STATICFILES_DIRS = [
|
||||||
STATIC_ROOT = os.path.join(BASE_DIR, "static")
|
STATIC_ROOT = os.path.join(BASE_DIR, "static")
|
||||||
|
|
||||||
STORAGES = {
|
STORAGES = {
|
||||||
|
"default": {
|
||||||
|
"BACKEND": "django.core.files.storage.FileSystemStorage",
|
||||||
|
},
|
||||||
'staticfiles': {
|
'staticfiles': {
|
||||||
'BACKEND': 'pipeline.storage.PipelineStorage',
|
'BACKEND': 'pipeline.storage.PipelineStorage',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue