feat: update links to Gitea and enhance TerminalTyper for docker-compose support

This commit is contained in:
an14051
2026-05-12 16:11:53 +02:00
parent 0d58fafe4e
commit 6e2951734e
4 changed files with 142 additions and 81 deletions
+10 -10
View File
@@ -5,25 +5,25 @@
* ─────────────────────────────────────────────────────────────
*/
export const LINKS = {
// ── GitHub ────────────────────────────────────────────────
// ── Gitea ─────────────────────────────────────────────────
/** Repository root — used in the nav, footer, and call-to-action buttons */
github: "https://github.com/evan-buss/backerup",
gitea: "https://gitea.doomlabs.de/KptltD00M/backerup",
/** Releases / changelog page */
githubReleases: "https://github.com/evan-buss/backerup/releases",
giteaReleases: "https://gitea.doomlabs.de/KptltD00M/backerup/releases",
/** Issue tracker */
githubIssues: "https://github.com/evan-buss/backerup/issues",
/** GitHub Discussions forum */
githubDiscussions: "https://github.com/evan-buss/backerup/discussions",
giteaIssues: "https://gitea.doomlabs.de/KptltD00M/backerup/issues",
/** Gitea Discussions forum */
giteaDiscussions: "https://gitea.doomlabs.de/KptltD00M/backerup/discussions",
/** CONTRIBUTING.md guide */
githubContributing: "https://github.com/evan-buss/backerup/blob/main/CONTRIBUTING.md",
giteaContributing: "https://gitea.doomlabs.de/KptltD00M/backerup/src/branch/main/CONTRIBUTING.md",
// ── Documentation ─────────────────────────────────────────
/** Primary documentation URL (separate from GitHub if hosted elsewhere) */
docs: "https://github.com/evan-buss/backerup",
/** Primary documentation URL (separate from Gitea if hosted elsewhere) */
docs: "https://gitea.doomlabs.de/KptltD00M/backerup",
// ── Docker ────────────────────────────────────────────────
/** Full Docker image reference shown in install snippets */
dockerImage: "ghcr.io/evan-buss/backerup:latest",
dockerImage: "gitea.doomlabs.de/kptltd00m/backerup:latest",
/** Default UI port the container exposes */
uiPort: "8080",
} as const;