From 43e0445981446f7d5016738609980bd3cd224330 Mon Sep 17 00:00:00 2001 From: Raphael Paul Laude Date: Sat, 20 Jul 2024 19:21:12 -0400 Subject: [PATCH] add some env vars back in --- backend/app/core/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/app/core/config.py b/backend/app/core/config.py index bee793fa..2612a6e3 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -74,7 +74,9 @@ def POSTGRES_USER(self) -> str: @property def POSTGRES_PASSWORD(self) -> str: (host,) = self.SQLALCHEMY_DATABASE_URI.hosts() - return host["password"] or "" + return ( + host["password"] or "changethis" + ) # if changethis is returned in prod, will throw an error @property def POSTGRES_SERVER(self) -> str: