We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af4d682 commit 2d1cc26Copy full SHA for 2d1cc26
benefits/settings.py
@@ -238,10 +238,14 @@ def RUNTIME_ENVIRONMENT():
238
"BACKEND": os.environ.get(
239
"DJANGO_STATICFILES_STORAGE", "django.contrib.staticfiles.storage.ManifestStaticFilesStorage"
240
)
241
- }
+ },
242
}
243
STATIC_ROOT = os.path.join(BASE_DIR, "static")
244
245
+# User-uploaded files (agency logos)
246
+
247
+MEDIA_ROOT = os.environ.get("DJANGO_DB_DIR", BASE_DIR) + "/agencies/"
248
249
# Logging configuration
250
LOG_LEVEL = os.environ.get("DJANGO_LOG_LEVEL", "DEBUG" if DEBUG else "WARNING")
251
LOGGING = {
0 commit comments