agenda_culturel/src/agenda_culturel/settings/prod.py

11 lines
240 B
Python
Raw Normal View History

2023-05-10 13:19:19 +02:00
from .base import * # noqa
2023-05-10 12:09:50 +02:00
STORAGES = {
2023-05-10 13:33:56 +02:00
"default": {
"BACKEND": "django.core.files.storage.FileSystemStorage",
},
2023-05-10 12:09:50 +02:00
"staticfiles": {
"BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage",
},
}