mirror of
https://gitlab.w-hs.de/an14051/backerup-website.git
synced 2026-07-27 17:35:29 +00:00
38 lines
2.3 KiB
TypeScript
38 lines
2.3 KiB
TypeScript
/**
|
|
* ─────────────────────────────────────────────────────────────
|
|
* 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;
|