From df9a975125d4b3a66e708d9b5be8601270ed62df Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 13 Feb 2026 19:13:23 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20migrate=20forge.lthn.ai=20=E2=86=92=20?= =?UTF-8?q?forge.lthn.io?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update Forgejo domain references in CI pipeline, vanity import tool, and core-app codex prompt. Co-Authored-By: Virgil --- .woodpecker/bugseti.yml | 2 +- cmd/core-app/CODEX_PROMPT.md | 2 +- cmd/vanity-import/main.go | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker/bugseti.yml b/.woodpecker/bugseti.yml index 5e9387c9..8e8b77aa 100644 --- a/.woodpecker/bugseti.yml +++ b/.woodpecker/bugseti.yml @@ -41,7 +41,7 @@ steps: settings: api_key: from_secret: forgejo_token - base_url: https://forge.lthn.ai + base_url: https://forge.lthn.io files: - bin/bugseti-linux-amd64.tar.gz - bin/bugseti-linux-amd64.tar.gz.sha256 diff --git a/cmd/core-app/CODEX_PROMPT.md b/cmd/core-app/CODEX_PROMPT.md index 7dbfbf27..a59bb2e9 100644 --- a/cmd/core-app/CODEX_PROMPT.md +++ b/cmd/core-app/CODEX_PROMPT.md @@ -94,7 +94,7 @@ go build -tags nowatcher -o ../../bin/core-app . ## CRITICAL WARNINGS - **DO NOT push to GitHub** — GitHub remotes have been removed deliberately. The host-uk org is flagged. -- **DO NOT add GitHub as a remote** — Forge (forge.lthn.ai / git.lthn.ai) is the source of truth. +- **DO NOT add GitHub as a remote** — Forge (forge.lthn.io / git.lthn.ai) is the source of truth. - **DO NOT modify files outside `cmd/core-app/`** — This is a workspace module, keep changes scoped. - **DO NOT remove the `-tags nowatcher` build flag** — It will fail without libwatcher-c. - **DO NOT change the PHP-ZTS path** — It must be the ZTS variant, not the default Homebrew PHP. diff --git a/cmd/vanity-import/main.go b/cmd/vanity-import/main.go index c6e40220..1833f835 100644 --- a/cmd/vanity-import/main.go +++ b/cmd/vanity-import/main.go @@ -2,7 +2,7 @@ // // When a Go tool requests ?go-get=1, this server responds with HTML // containing tags that map dappco.re module -// paths to their Git repositories on forge.lthn.ai. +// paths to their Git repositories on forge.lthn.io. // // For browser requests (no ?go-get=1), it redirects to the Forgejo // repository web UI. @@ -22,7 +22,7 @@ var modules = map[string]string{ } const ( - forgeBase = "https://forge.lthn.ai" + forgeBase = "https://forge.lthn.io" vanityHost = "dappco.re" defaultAddr = ":8080" )