From aa8178efceda26110fecd6a605887a1e1573d8c0 Mon Sep 17 00:00:00 2001 From: Michael Hunteman Date: Sun, 29 Sep 2024 15:26:19 -0700 Subject: Update database connection --- server/cmd/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server') diff --git a/server/cmd/main.go b/server/cmd/main.go index a180cc4..b57ee30 100644 --- a/server/cmd/main.go +++ b/server/cmd/main.go @@ -15,11 +15,11 @@ import ( ) var ( - user = os.Getenv("USER") + user = "postgres" password = os.Getenv("PASS") host = "localhost" port = "5432" - database = "postgres" + database = "wedding" ) func main() { -- cgit v1.2.3