From ad5c3397808b1d32230f6be455cba3a5943cf809 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 11 Jan 2023 10:11:32 +0100 Subject: [PATCH] fix --- apps/api/src/lib/common.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/api/src/lib/common.ts b/apps/api/src/lib/common.ts index 049c24e5f..aa0555e9d 100644 --- a/apps/api/src/lib/common.ts +++ b/apps/api/src/lib/common.ts @@ -1935,7 +1935,6 @@ export function generateSecrets( envs.push(parseSecret(secret, build)); }); } - console.log(envs); const portFound = envs.filter((env) => env.startsWith('PORT')); if (portFound.length === 0 && port && !isBuild) { envs.push(`PORT=${port}`);