From 2ee706bab1ed001fa5da87774e00cce33f8d2bd5 Mon Sep 17 00:00:00 2001 From: Till JS Date: Wed, 20 May 2026 16:54:44 +0200 Subject: [PATCH] =?UTF-8?q?fix(manifest):=20base=5Furl=20auf=20api.wordeck?= =?UTF-8?q?.com=20=E2=80=94=20wordeck.com=20ist=20Web,=20hat=20kein=20/hea?= =?UTF-8?q?lthz?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Vor dem Rebrand zeigte base_url auf cardecky.mana.how (war API+Web im gleichen Container). Mit dem Switch wurde cardecky.mana.how zur 301- Redirect-Stub, wordeck.com läuft als reines SvelteKit-Web — kein /healthz, kein /api/v1/*. Damit liefen alle Manifest-Endpoints (health, search, share/receive, tools, dsgvo) ins Leere. Korrekt ist https://api.wordeck.com (Container kreisel… nein, cards-api auf :3191, ingress in managarten cloudflared-config). mana-share-Health-Cron sah dadurch wordeck als failed=1 — nach Re-Registrierung mit korrektem base_url ist OK erwartet beim nächsten Cron-Tick. Co-Authored-By: Claude Opus 4.7 (1M context) --- app-manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-manifest.json b/app-manifest.json index e112037..ced02fc 100644 --- a/app-manifest.json +++ b/app-manifest.json @@ -11,7 +11,7 @@ "ownership": { "kind": "verein" }, "tier_required": "beta", "endpoints": { - "base_url": "https://wordeck.com", + "base_url": "https://api.wordeck.com", "health": "/healthz", "dsgvo_export": "/api/v1/dsgvo/export", "search": "/api/v1/search",