From 4ced8bec96d6b82847eaa26af284301f06493a4f Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 21 Sep 2025 01:35:46 -0600 Subject: [PATCH] feat: add completion message and exit process after Dokploy setup --- apps/dokploy/setup.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/dokploy/setup.ts b/apps/dokploy/setup.ts index 13590e4e7..55e1da87c 100644 --- a/apps/dokploy/setup.ts +++ b/apps/dokploy/setup.ts @@ -1,3 +1,4 @@ +import { exit } from "node:process"; import { execAsync } from "@dokploy/server"; import { setupDirectories } from "@dokploy/server/setup/config-paths"; import { initializePostgres } from "@dokploy/server/setup/postgres-setup"; @@ -25,6 +26,8 @@ import { await initializeStandaloneTraefik(); await initializeRedis(); await initializePostgres(); + console.log("Dokploy setup completed"); + exit(0); } catch (e) { console.error("Error in dokploy setup", e); }