From 7feb4061f8d3f5242ccbcd3c622c3b8a3c93e976 Mon Sep 17 00:00:00 2001 From: Farrel Darian <62016900+fdarian@users.noreply.github.com> Date: Mon, 12 Jan 2026 11:02:21 +0700 Subject: [PATCH] feat: expose dropDeployment endpoint in public API Enable file upload deployments via the public API, unlocking CI/CD workflows similar to `railway up`. Users can now programmatically deploy by uploading zip archives. Depends on: Dokploy/trpc-openapi multipart/form-data support --- apps/dokploy/server/api/routers/application.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/dokploy/server/api/routers/application.ts b/apps/dokploy/server/api/routers/application.ts index df3e81c82..ebf1f1503 100644 --- a/apps/dokploy/server/api/routers/application.ts +++ b/apps/dokploy/server/api/routers/application.ts @@ -809,7 +809,6 @@ export const applicationRouter = createTRPCRouter({ path: "/drop-deployment", method: "POST", override: true, - enabled: false, }, }) .input(z.instanceof(FormData))