From c35c1055cc9b529b3a95d13910e3fc08181996a9 Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Thu, 14 May 2026 19:48:24 +0200 Subject: [PATCH] fix: update all gitea.giersig.eu refs to git.wildwuchs.work --- CLAUDE.md | 4 ++-- README.md | 2 +- _data/githubActivity.js | 2 +- _data/githubRepos.js | 2 +- _data/site.js | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index e493914..69b33fd 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -190,7 +190,7 @@ The following are set directly in `.github/workflows/deploy.yml` (not secrets) b ``` INDIEKIT_URL http://10.100.0.20:3000 # node jail — IndieKit API, Funkwhale proxy, etc. FUNKWHALE_INSTANCE http://10.100.0.40:5000 # Funkwhale jail -GITEA_URL https://gitea.giersig.eu # used by _data/githubActivity.js, githubRepos.js, widget JS +GITEA_URL https://git.wildwuchs.work # used by _data/githubActivity.js, githubRepos.js, widget JS GITEA_ORG giersig.eu # Gitea org that owns the repos ``` @@ -212,6 +212,6 @@ GITEA_ORG giersig.eu # Gitea org that owns the repos - **Content-warning support** — collapsible content on post pages, hidden content on listings - **Upstream drift check script** — `scripts/check-upstream-widget-drift.mjs` - **Self-hosted Gitea CI** — replaced GitHub Actions; `act_runner` on FreeBSD (custom `gitea_runner` rc service, `su - git` + `nohup`), sharp built from source with persistent binary cache (`src/build/Release/`), rsync via `deploy` user, syndication webhook via internal jail URL -- **Gitea sidebar widget** — `github-repos.njk` renamed to "Gitea"; runtime JS fetches commits/repos/PRs directly from `gitea.giersig.eu` API; build-time data via `_data/githubActivity.js` + `_data/githubRepos.js` (both use Gitea org API). Widget configured via `site.gitea.{url,org,repos}` in `_data/site.js` +- **Gitea sidebar widget** — `github-repos.njk` renamed to "Gitea"; runtime JS fetches commits/repos/PRs directly from `git.wildwuchs.work` API; build-time data via `_data/githubActivity.js` + `_data/githubRepos.js` (both use Gitea org API). Widget configured via `site.gitea.{url,org,repos}` in `_data/site.js` - **Changelog → Gitea** — `/changelog` page fetches commits directly from Gitea API (both repos), with client-side commit categorisation (feat/fix/docs/chore/refactor); no longer depends on IndieKit's GitHub proxy endpoint - **Post interlinking** — See Also (in-text links + `related:` frontmatter + same-target posts) and Linked From (backlinks); image links excluded from auto-extraction; untitled posts show path-only URL via `pathOnly` filter diff --git a/README.md b/README.md index bfee916..08ca337 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Personal IndieWeb blog for [blog.giersig.eu](https://blog.giersig.eu), built with [Eleventy](https://www.11ty.dev/) and [IndieKit](https://getindiekit.com/). -This is **svemagie's** instance of [`svemagie/blog-eleventy-indiekit`](https://gitea.giersig.eu/svemagie/blog-eleventy-indiekit) (the shared theme), adapted and extended beyond the upstream. +This is **svemagie's** instance of [`svemagie/blog-eleventy-indiekit`](https://git.wildwuchs.work/svemagie/blog-eleventy-indiekit) (the shared theme), adapted and extended beyond the upstream. --- diff --git a/_data/githubActivity.js b/_data/githubActivity.js index 7d87878..d4f1dc0 100644 --- a/_data/githubActivity.js +++ b/_data/githubActivity.js @@ -5,7 +5,7 @@ import { cachedFetch } from "../lib/data-fetch.js"; -const GITEA_URL = process.env.GITEA_INTERNAL_URL || process.env.GITEA_URL || "https://gitea.giersig.eu"; +const GITEA_URL = process.env.GITEA_INTERNAL_URL || process.env.GITEA_URL || "https://git.wildwuchs.work"; const GITEA_ORG = process.env.GITEA_ORG || "giersig.eu"; const GITEA_REPOS = (process.env.GITEA_REPOS || "indiekit-blog,indiekit-server").split(",").filter(Boolean); diff --git a/_data/githubRepos.js b/_data/githubRepos.js index 712ced1..b90a381 100644 --- a/_data/githubRepos.js +++ b/_data/githubRepos.js @@ -5,7 +5,7 @@ import { cachedFetch } from "../lib/data-fetch.js"; -const GITEA_URL = process.env.GITEA_INTERNAL_URL || process.env.GITEA_URL || "https://gitea.giersig.eu"; +const GITEA_URL = process.env.GITEA_INTERNAL_URL || process.env.GITEA_URL || "https://git.wildwuchs.work"; const GITEA_ORG = process.env.GITEA_ORG || "giersig.eu"; export default async function () { diff --git a/_data/site.js b/_data/site.js index a43c9fa..2395984 100644 --- a/_data/site.js +++ b/_data/site.js @@ -117,7 +117,7 @@ export default { // Gitea configuration gitea: { - url: process.env.GITEA_URL || "https://gitea.giersig.eu", + url: process.env.GITEA_URL || "https://git.wildwuchs.work", org: process.env.GITEA_ORG || "giersig.eu", repos: (process.env.GITEA_REPOS || "indiekit-blog,indiekit-server").split(",").filter(Boolean), },