From 9c0c58035a5da8a5f38c614f5788246bc1c0fbbe Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Thu, 10 Oct 2024 22:40:02 -0600 Subject: [PATCH] chore; add logs for process env --- apps/dokploy/server/server.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/dokploy/server/server.ts b/apps/dokploy/server/server.ts index f3a58b33..e501d837 100644 --- a/apps/dokploy/server/server.ts +++ b/apps/dokploy/server/server.ts @@ -69,8 +69,9 @@ void app.prepare().then(async () => { server.listen(PORT); console.log("Server Started:", PORT); - + console.log(IS_CLOUD, process.env.IS_CLOUD); if (!IS_CLOUD) { + console.log("Starting Deployment Worker"); deploymentWorker.run(); } } catch (e) {