From 88de2872d86057bfa47d5cb2e04e52b11d685d24 Mon Sep 17 00:00:00 2001 From: Jesse Cooke <18191+jc00ke@users.noreply.github.com> Date: Tue, 29 Oct 2024 00:46:54 -0700 Subject: [PATCH] Don't require host for postgres (twentyhq#8157) (#8159) Not sure if this will pass the tests; I don't have TS experience so I'll see what CI does with it. Fixes #8157 --- .../src/engine/core-modules/environment/environment-variables.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/twenty-server/src/engine/core-modules/environment/environment-variables.ts b/packages/twenty-server/src/engine/core-modules/environment/environment-variables.ts index 77d54025f..51a225fae 100644 --- a/packages/twenty-server/src/engine/core-modules/environment/environment-variables.ts +++ b/packages/twenty-server/src/engine/core-modules/environment/environment-variables.ts @@ -116,6 +116,7 @@ export class EnvironmentVariables { protocols: ['postgres'], require_tld: false, allow_underscores: true, + require_host: false, }) PG_DATABASE_URL: string;