feat: adds character-records-generator site

This commit is contained in:
Lewis Wynne 2026-04-07 17:14:47 +01:00
parent 15e173b92c
commit ce0932d638

View file

@ -16,7 +16,9 @@
# readWritePaths — paths the server can write to at runtime (default: []) # readWritePaths — paths the server can write to at runtime (default: [])
# afterServices — systemd units to wait for before building (default: ["forgejo.service"]) # afterServices — systemd units to wait for before building (default: ["forgejo.service"])
# #
# a listener is active on http://localhost:4323/hooks/${name}-rebuild for CD # remarks:
#
# - a listener is active on http://localhost:4323/hooks/${name}-rebuild for CD
# Forgejo repo -> settings -> Webhooks -> Add webhook # Forgejo repo -> settings -> Webhooks -> Add webhook
{ ... }: { ... }:
@ -47,4 +49,13 @@ in
repo = "https://git.ily.rs/lew/penfield"; repo = "https://git.ily.rs/lew/penfield";
static = true; static = true;
}; };
services.site.record-generator = {
enable = true;
domain = "c.ily.rs";
repo = "https://git.ily.rs/lew/character-records-generator";
static = true;
buildOutputDir = "build";
packageManager = "npm";
};
} }