/** * ───────────────────────────────────────────────────────────── * 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", // ── Daterup ────────────────────────────────────────────── /** Daterup repository root */ daterupGitea: "https://gitea.doomlabs.de/KptltD00M/daterup", /** Daterup Docker image reference */ daterupDockerImage: "gitea.doomlabs.de/kptltd00m/daterup:latest", } as const; export type Links = typeof LINKS;