fix: modify github.com to code.troylusty.com
This commit is contained in:
parent
c6dec071bb
commit
b0b9b631a9
4 changed files with 10 additions and 10 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
|||
</Link>
|
||||
|
||||
<Link
|
||||
href="https://github.com/troylusty"
|
||||
href="https://code.troylusty.com"
|
||||
class="bg-button text-secondary hover:bg-button-active flex w-fit flex-row items-center gap-1 justify-self-center rounded-full p-2 text-center text-sm text-nowrap capitalize transition-colors duration-300"
|
||||
>
|
||||
<Icon name="mdi:github" title="GitHub" class="h-4 w-4" />
|
||||
<Icon name="mdi:git" title="Git" class="h-4 w-4" />
|
||||
</Link>
|
||||
<Link
|
||||
href="https://store.steampowered.com/developer/troy"
|
||||
|
|
Loading…
Add table
Reference in a new issue