Skip to content

Commit 6b33a08

Browse files
committed
feat: add Supabase storage configuration toggle in settings
1 parent c0e277b commit 6b33a08

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

backend/settings.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,3 +301,6 @@
301301
EMAIL_PORT = 2525
302302
EMAIL_HOST_USER = os.environ.get("EMAIL_HOST_USER")
303303
EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_HOST_PASSWORD")
304+
305+
# Supabase storage configuration
306+
USE_SUPABASE_STORAGE = os.environ.get('USE_SUPABASE_STORAGE', 'False').lower() in ('true', '1', 't')

0 commit comments

Comments
 (0)