From b5cf59e743b7e32abd88be6a72f13750cf34d145 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Tue, 29 Oct 2024 02:11:51 -0600 Subject: [PATCH] refactor(dokploy): add log for jobdata --- apps/dokploy/server/utils/deploy.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/dokploy/server/utils/deploy.ts b/apps/dokploy/server/utils/deploy.ts index 5acd91a9c..eced60b45 100644 --- a/apps/dokploy/server/utils/deploy.ts +++ b/apps/dokploy/server/utils/deploy.ts @@ -7,6 +7,9 @@ export const deploy = async (jobData: DeploymentJob) => { if (server.serverStatus === "inactive") { throw new Error("Server is inactive"); } + + console.log(jobData); + console.log(`${process.env.SERVER_URL}/deploy`); const result = await fetch(`${process.env.SERVER_URL}/deploy`, { method: "POST", headers: {