/** * ───────────────────────────────────────────────────────────── * LINK CONFIGURATION * Edit this file to update every link across the entire site. * ───────────────────────────────────────────────────────────── */ export const LINKS = { // ── Gitea ───────────────────────────────────────────────── /** Repository root — used in the nav, footer, and call-to-action buttons */ gitea: "https://gitea.doomlabs.de/KptltD00M/backerup", /** Releases / changelog page */ giteaReleases: "https://gitea.doomlabs.de/KptltD00M/backerup/releases", /** Issue tracker */ giteaIssues: "https://gitea.doomlabs.de/KptltD00M/backerup/issues", /** Gitea Discussions forum */ giteaDiscussions: "https://gitea.doomlabs.de/KptltD00M/backerup/discussions", /** CONTRIBUTING.md guide */ giteaContributing: "https://gitea.doomlabs.de/KptltD00M/backerup/src/branch/main/CONTRIBUTING.md", // ── Documentation ───────────────────────────────────────── /** 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: "gitea.doomlabs.de/kptltd00m/backerup:latest", /** Default UI port the container exposes */ uiPort: "8080", // ── Updaterup ───────────────────────────────────────────── /** Updaterup repository root */ updaterupGitea: "https://gitea.doomlabs.de/KptltD00M/updaterup", /** Updaterup Docker image reference */ updaterupDockerImage: "gitea.doomlabs.de/kptltd00m/updaterup:latest", } as const; export type Links = typeof LINKS;