From b8818ae74b383ecfe2e53dcf70acbf97a33f7ca1 Mon Sep 17 00:00:00 2001 From: Ephraim Atta-Duncan Date: Thu, 27 Nov 2025 12:53:16 +0000 Subject: [PATCH] chore: stuff --- apps/remix/server/main.js | 15 +++++---------- turbo.json | 1 + 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/apps/remix/server/main.js b/apps/remix/server/main.js index 875448999..4a9281f0a 100644 --- a/apps/remix/server/main.js +++ b/apps/remix/server/main.js @@ -33,13 +33,8 @@ const handler = handle(build, server); const port = parseInt(process.env.PORT || '3000', 10); const hostname = process.env.HOSTNAME || '0.0.0.0'; -serve( - { - fetch: handler.fetch, - port, - hostname, - }, - (info) => { - console.log(`🚀 Documenso Server listening on http://${info.address}:${info.port}`); - }, -); +serve({ + fetch: handler.fetch, + port, + hostname, +}); diff --git a/turbo.json b/turbo.json index 0c169bcc7..7bdf8a458 100644 --- a/turbo.json +++ b/turbo.json @@ -39,6 +39,7 @@ "globalEnv": [ "APP_VERSION", "PORT", + "HOSTNAME", "NEXT_PRIVATE_ENCRYPTION_KEY", "NEXT_PRIVATE_ENCRYPTION_SECONDARY_KEY", "NEXTAUTH_SECRET",