Spaces:
Sleeping
Sleeping
Fix InvalidStorageError by adding default storage to STORAGES
Browse files
satcap_project/settings.py
CHANGED
|
@@ -87,6 +87,9 @@ STATIC_URL = 'static/'
|
|
| 87 |
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
|
| 88 |
|
| 89 |
STORAGES = {
|
|
|
|
|
|
|
|
|
|
| 90 |
"staticfiles": {
|
| 91 |
"BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage",
|
| 92 |
},
|
|
|
|
| 87 |
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
|
| 88 |
|
| 89 |
STORAGES = {
|
| 90 |
+
"default": {
|
| 91 |
+
"BACKEND": "django.core.files.storage.FileSystemStorage",
|
| 92 |
+
},
|
| 93 |
"staticfiles": {
|
| 94 |
"BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage",
|
| 95 |
},
|