From 48df9ee56da02e49b17c80587cbedd3135a9150e Mon Sep 17 00:00:00 2001 From: Sean Morley <98704938+seanmorley15@users.noreply.github.com> Date: Sat, 31 May 2025 21:08:33 -0400 Subject: [PATCH] Update backend/server/main/settings.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- backend/server/main/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/server/main/settings.py b/backend/server/main/settings.py index b7dccb2..073fd77 100644 --- a/backend/server/main/settings.py +++ b/backend/server/main/settings.py @@ -119,7 +119,7 @@ DATABASES = { 'USER': env('PGUSER', 'POSTGRES_USER'), 'PASSWORD': env('PGPASSWORD', 'POSTGRES_PASSWORD'), 'HOST': env('PGHOST', default='localhost'), - 'PORT': env('PGPORT', default='5432'), + 'PORT': int(env('PGPORT', default='5432')), 'OPTIONS': { 'sslmode': 'prefer', # Prefer SSL, but allow non-SSL connections },