From 16eacb1fdf8a9175b7928c5b7ab13aab7097dbd0 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Wed, 8 Jul 2026 01:11:26 -0600 Subject: [PATCH] =?UTF-8?q?fix:=20point=20domain=20at=20/dashboard=20?= =?UTF-8?q?=E2=80=94=20engram=20cloud=20serves=20no=20route=20at=20/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit engram `cloud serve` only registers /health, /sync/* and /dashboard/*; Go's ServeMux answers "404 page not found" at the root path, which is indistinguishable from a Traefik router miss. The deploy itself was fine (both containers healthy), but the default domain pointed at `/` and kept returning 404. Adding `path = "/dashboard"` routes the app's real browser surface (login page / dashboard). Co-Authored-By: Claude Fable 5 --- blueprints/engram/template.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/blueprints/engram/template.toml b/blueprints/engram/template.toml index e12b5157..09c58b40 100644 --- a/blueprints/engram/template.toml +++ b/blueprints/engram/template.toml @@ -17,3 +17,4 @@ mounts = [] serviceName = "engram" port = 8080 host = "${main_domain}" +path = "/dashboard"