fix: update git repo links
This commit is contained in:
parent
de0b56ef5b
commit
62ed418631
5 changed files with 16 additions and 8 deletions
|
@ -24,7 +24,7 @@ const projects = [
|
||||||
"Self-hosted Forgejo Actions",
|
"Self-hosted Forgejo Actions",
|
||||||
"Docker",
|
"Docker",
|
||||||
],
|
],
|
||||||
link: "https://code.troylusty.com/troy/troylusty.com",
|
link: "https://code.threepop.com/troy/troylusty.com",
|
||||||
done: true,
|
done: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -46,7 +46,7 @@ export const SITE: Site = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Git",
|
name: "Git",
|
||||||
href: "https://code.troylusty.com",
|
href: "https://code.threepop.com",
|
||||||
icon: "mdi:git",
|
icon: "mdi:git",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: "Website"
|
title: "Hosting my own Digital Content"
|
||||||
date: 2025-04-25
|
date: 2025-05-03
|
||||||
description: "An overview of what I am using to host my digital content."
|
description: "An overview of what I am using to host my digital content."
|
||||||
image:
|
image:
|
||||||
url: "showcase.webp"
|
url: "showcase.webp"
|
||||||
|
@ -12,8 +12,16 @@ draft: true
|
||||||
|
|
||||||
This post will outline my workflow of using a self-hosted Forgejo instance and Actions runner to automatically deploy my personal site and any software releases, all without having to rely on another provider.
|
This post will outline my workflow of using a self-hosted Forgejo instance and Actions runner to automatically deploy my personal site and any software releases, all without having to rely on another provider.
|
||||||
|
|
||||||
|
What initially started as a bit of experimentation out of intrigue has evolved into allowing me better control over tasks I now carry out with work. It has given me the confidence to expand my knowledge out to other areas and even aid others.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
This website's goal is not only to showcase my interests and the subsequent artwork which comes from that. But to also act as a way for me to learn more about web development, software deployment, and hosting on your own infrastructure.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
As a result of all this, it gave me the drive to pursue using NixOS on my personal rig, and using it to set up a home server to host a Jellyfin and Immich instance.
|
||||||
|
|
||||||
## Steps
|
## Steps
|
||||||
|
|
||||||
### Private image access login?
|
### Private image access login?
|
||||||
|
|
|
@ -9,7 +9,7 @@ categories: ["personal"]
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
[Packard](https://code.troylusty.com/troy/packard) is a simple RSS aggregator meant to allow you to take a quick glance at what's occurring in topics you care about. This is my first attempt at making something with Rust so that I may learn alongside creating something that I personally find useful.
|
[Packard](https://code.threepop.com/troy/packard) is a simple RSS aggregator meant to allow you to take a quick glance at what's occurring in topics you care about. This is my first attempt at making something with Rust so that I may learn alongside creating something that I personally find useful.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ On NixOS you can install Packard by including it as an input in flake.nix, then
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
inputs = {
|
inputs = {
|
||||||
packard.url = "git+https://code.troylusty.com/troy/packard";
|
packard.url = "git+https://code.threepop.com/troy/packard";
|
||||||
};
|
};
|
||||||
|
|
||||||
...
|
...
|
||||||
|
@ -31,7 +31,7 @@ environment.systemPackages = {
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
Alternatively, [the latest release](https://code.troylusty.com/troy/packard/releases/latest) binary is available.
|
Alternatively, [the latest release](https://code.threepop.com/troy/packard/releases/latest) binary is available.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ import icon from "public/assets/icon.png";
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
<Link
|
<Link
|
||||||
href="https://code.troylusty.com"
|
href="https://code.threepop.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"
|
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:git" title="Git" class="h-4 w-4" />
|
<Icon name="mdi:git" title="Git" class="h-4 w-4" />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue