From 0792ef0f4b2b906be1706dced84749952af38e2b Mon Sep 17 00:00:00 2001 From: RikThePixel Date: Wed, 10 Jan 2024 19:49:36 +0100 Subject: [PATCH] Dirty log env variables for debugging --- apps/gateway/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/gateway/src/index.ts b/apps/gateway/src/index.ts index 651a546..312eebc 100644 --- a/apps/gateway/src/index.ts +++ b/apps/gateway/src/index.ts @@ -16,6 +16,8 @@ const AUTH_CONFIG: AuthOptions = { tokenSigningAlg: 'RS256', }; +console.log(process.env) + const SERVICES = { accounts: process.env.ACCOUNTS_SERVICE_URL ?? 'http://localhost:8001', ads: process.env.ADVERTISEMENTS_SERVICE_URL ?? 'http://localhost:8002',