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")
|
||||
|
||||
STORAGES = {
|
||||
"default": {
|
||||
"BACKEND": "django.core.files.storage.FileSystemStorage",
|
||||
},
|
||||
'staticfiles': {
|
||||
'BACKEND': 'pipeline.storage.PipelineStorage',
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue