rinogeek commited on
Commit
27d1eb2
·
1 Parent(s): cea28fa

Fix InvalidStorageError by adding default storage to STORAGES

Browse files
Files changed (1) hide show
  1. satcap_project/settings.py +3 -0
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
  },