From 1bc2c16f1044d173f6770d35a41b17071996f8a3 Mon Sep 17 00:00:00 2001 From: Paul Gilzow Date: Mon, 14 Oct 2024 15:21:32 -0500 Subject: [PATCH] uses host instead of ip. closes #575 --- config/database.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.js b/config/database.js index 84092ac..be2179a 100644 --- a/config/database.js +++ b/config/database.js @@ -39,7 +39,7 @@ if (config.isValidPlatform() && !config.inBuild()) { connection: { client: "postgres", connection: { - host: credentials.ip, + host: credentials.host, port: credentials.port, database: credentials.path, user: credentials.username,