Fix default storage

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2024-10-28 23:45:36 +01:00
parent 196dbc8275
commit a5aff5ff21
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 3 additions and 0 deletions

View File

@ -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',
}, },