From 3e9bf7c0e07ce1b60cf61e3e3f95aa77e8027d94 Mon Sep 17 00:00:00 2001 From: Mark Henderson Date: Mon, 9 Mar 2026 17:52:58 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20use=20correct=20Coolify=20server=20UUID?= =?UTF-8?q?=20=E2=80=94=20was=20hardcoded=20'0'=20which=20doesn't=20exist?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made-with: Cursor --- lib/coolify.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/coolify.ts b/lib/coolify.ts index 3072f9b..b26eb07 100644 --- a/lib/coolify.ts +++ b/lib/coolify.ts @@ -128,7 +128,7 @@ export async function createApplication(opts: { const { projectUuid, name, gitRepo, gitBranch = 'main', - serverUuid = '0', + serverUuid = process.env.COOLIFY_SERVER_UUID ?? 'jws4g4cgssss4cw48s488woc', environmentName = 'production', buildPack = 'nixpacks', ports = '3000', @@ -166,7 +166,7 @@ export async function createMonorepoAppService(opts: { projectUuid, appName, gitRepo, gitBranch = 'main', domain, - serverUuid = '0', + serverUuid = process.env.COOLIFY_SERVER_UUID ?? 'jws4g4cgssss4cw48s488woc', environmentName = 'production', } = opts;