From 87a45b1bc58d9af91740c78b1cc717429e5149fe Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 15:10:38 +0000 Subject: [PATCH 1/3] Changes Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com> --- supabase/functions/_shared/railway.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/supabase/functions/_shared/railway.ts b/supabase/functions/_shared/railway.ts index 9db5bc4..0a6e60a 100644 --- a/supabase/functions/_shared/railway.ts +++ b/supabase/functions/_shared/railway.ts @@ -75,6 +75,7 @@ export async function configureRailwayService(opts: { token: string; serviceId: string; environmentId: string; + projectId?: string; image: string; variables: Record; startCommand?: string; From 1e9964556947d8b7195b237c0218c96e29b5b0c8 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 15:10:44 +0000 Subject: [PATCH 2/3] Changes Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com> --- supabase/functions/_shared/railway.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/supabase/functions/_shared/railway.ts b/supabase/functions/_shared/railway.ts index 0a6e60a..b3a52eb 100644 --- a/supabase/functions/_shared/railway.ts +++ b/supabase/functions/_shared/railway.ts @@ -110,6 +110,7 @@ export async function configureRailwayService(opts: { token: opts.token, serviceId: opts.serviceId, environmentId: opts.environmentId, + projectId: opts.projectId, name, value, }); From 72650ba1379ed60b5af72e763e3f21c74b7acc91 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 15:10:51 +0000 Subject: [PATCH 3/3] Changes Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com> --- supabase/functions/provision-agent/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/supabase/functions/provision-agent/index.ts b/supabase/functions/provision-agent/index.ts index 1ef6e02..fa4d874 100644 --- a/supabase/functions/provision-agent/index.ts +++ b/supabase/functions/provision-agent/index.ts @@ -252,6 +252,7 @@ Deno.serve(async (req) => { token: RAILWAY_API_TOKEN, serviceId: railwayServiceId, environmentId: pool.railway_environment_id, + projectId: pool.railway_project_id, image: "ghcr.io/domfelipe/hermes-agent-custom:latest", variables: envVars, });