From ffd51cf32fb081b2fa406eea4c57a0b000d43d01 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Fri, 8 May 2026 19:32:05 -0600 Subject: [PATCH] feat(templates): add isolated deployment configuration to CompleteTemplate Introduced an optional 'isolated' boolean property in the CompleteTemplate interface to manage isolated deployment settings. Added tests to verify default behavior (isolated=true) and explicit settings (isolated=true/false) in the deployment configuration. This change enhances template flexibility for deployment configurations. --- apps/dokploy/__test__/templates/helpers.template.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/__test__/templates/helpers.template.test.ts b/apps/dokploy/__test__/templates/helpers.template.test.ts index f2af2717b..d8d444b72 100644 --- a/apps/dokploy/__test__/templates/helpers.template.test.ts +++ b/apps/dokploy/__test__/templates/helpers.template.test.ts @@ -31,7 +31,7 @@ describe("helpers functions", () => { expect(domain.startsWith(`${mockSchema.projectName}-`)).toBeTruthy(); expect( domain.endsWith( - `${mockSchema.serverIp.replaceAll(".", "-")}.traefik.me`, + `${mockSchema.serverIp.replaceAll(".", "-")}.sslip.io`, ), ).toBeTruthy(); });