diff --git a/README.md b/README.md
index 698b64b..7b3b043 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ Project and post articles are contained within MDX documents located in `src/con
## 🚧 Building
-Docker is used to deploy the site to a VPS. Container images are built using a [GitHub Action](.github/workflows/docker.yml) from the included [Dockerfile](Dockerfile).
+Docker is used to deploy the site to a VPS. Container images are built using an [Action](.forgejo/workflows/docker.yml) from the included [Dockerfile](Dockerfile).
## 🧞 Commands
diff --git a/src/content/projects/discord-bot/index.mdx b/src/content/projects/discord-bot/index.mdx
index 7273bbd..03cf498 100644
--- a/src/content/projects/discord-bot/index.mdx
+++ b/src/content/projects/discord-bot/index.mdx
@@ -12,4 +12,4 @@ The objective I set myself was to write a Discord bot as my AQA Computer Science
### External links
-https://github.com/troylusty/discordbot
+https://code.troylusty.com/troy/discordbot
diff --git a/src/content/projects/packard/index.mdx b/src/content/projects/packard/index.mdx
index ac85885..33ece49 100644
--- a/src/content/projects/packard/index.mdx
+++ b/src/content/projects/packard/index.mdx
@@ -22,7 +22,7 @@ On NixOS you can install Packard by including it as an input in flake.nix, then
```nix
inputs = {
- packard.url = "github:troylusty/packard";
+ packard.url = "git+https://code.troylusty.com/troy/packard";
};
...
@@ -32,7 +32,7 @@ environment.systemPackages = {
};
```
-Alternatively, [the latest release](https://github.com/troylusty/packard/releases/latest) binary is available.
+Alternatively, [the latest release](https://code.troylusty.com/troy/packard/releases/latest) binary is available.
## Configuration
@@ -80,4 +80,4 @@ Currently no keyboard interaction is implemented. To get around this you can pip
### External links
-https://github.com/troylusty/packard
+https://code.troylusty.com/troy/packard
diff --git a/src/pages/cv.astro b/src/pages/cv.astro
index e100d84..c075ef3 100644
--- a/src/pages/cv.astro
+++ b/src/pages/cv.astro
@@ -33,8 +33,8 @@ const projects = [
id: 1,
name: "troylusty.com",
description: "My personal portfolio website made using Astro.",
- tags: ["Astro", "Tailwind CSS", "TypeScript", "GitHub Actions", "Docker"],
- link: "https://github.com/troylusty/troylusty.com/",
+ tags: ["Astro", "Tailwind CSS", "TypeScript", "Actions", "Docker"],
+ link: "https://code.troylusty.com/troy/troylusty.com",
},
{
id: 2,
@@ -49,7 +49,7 @@ const projects = [
name: "Packard",
description: "Terminal based feed checker.",
tags: ["Rust", "Tokio", "Clap", "NixOS Flake"],
- link: "https://github.com/troylusty/packard/",
+ link: "https://code.troylusty.com/troy/packard",
},
];
const sortedProjects = [...projects].sort((a, b) => a.id - b.id);
@@ -141,10 +141,10 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id);
-
+