From e67b2d23ae90066954d1e6b0ef94ae9214312f3a Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Sun, 22 Oct 2023 12:42:52 +0200 Subject: [PATCH] Fix port missing while building pg_database_url for render --- server/scripts/compute-database-url.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/scripts/compute-database-url.sh b/server/scripts/compute-database-url.sh index dad7d85215..13cc38149d 100755 --- a/server/scripts/compute-database-url.sh +++ b/server/scripts/compute-database-url.sh @@ -1,2 +1,2 @@ #!/bin/sh -export PG_DATABASE_URL=postgres://twenty:twenty@$PG_DATABASE_HOST:5432/default \ No newline at end of file +export PG_DATABASE_URL=postgres://twenty:twenty@$PG_DATABASE_HOST:$PG_DATABASE_PORT/default \ No newline at end of file