commit 6b5a56c784d1fa0db3836616aaec8be9bcf2c1cc Author: vxclutch Date: Wed Jun 24 14:25:28 2026 -0400 Inital commit diff --git a/.gitea/workflows/fsdproject-deploy.yaml b/.gitea/workflows/fsdproject-deploy.yaml new file mode 100644 index 0000000..4013cbb --- /dev/null +++ b/.gitea/workflows/fsdproject-deploy.yaml @@ -0,0 +1,11 @@ +name: Deply fsdproject.org +run-name: ${{ gitea.actor }} started deploying fsdproject.org +on: [push] + +jobs: + Deploy-Site: + runs-on: alpine-latest + steps: + - name: Pull latest site + run: | + doas -u minecraft git -C /home/minecraft/mc.vxserver.dev/ pull diff --git a/archive/CreateIcarus/CI-dev.zip b/archive/CreateIcarus/CI-dev.zip new file mode 100644 index 0000000..c4571fa Binary files /dev/null and b/archive/CreateIcarus/CI-dev.zip differ diff --git a/archive/CreateIcarus/Create Icarus 1.21.1 (2).zip b/archive/CreateIcarus/Create Icarus 1.21.1 (2).zip new file mode 100644 index 0000000..b4f2167 Binary files /dev/null and b/archive/CreateIcarus/Create Icarus 1.21.1 (2).zip differ diff --git a/archive/CreateIcarus/Create Icarus 1.21.1.zip b/archive/CreateIcarus/Create Icarus 1.21.1.zip new file mode 100644 index 0000000..39e12ba Binary files /dev/null and b/archive/CreateIcarus/Create Icarus 1.21.1.zip differ diff --git a/archive/CreateIcarus/CreateIcarus1.21.1.femboy.zip b/archive/CreateIcarus/CreateIcarus1.21.1.femboy.zip new file mode 100644 index 0000000..948d75b Binary files /dev/null and b/archive/CreateIcarus/CreateIcarus1.21.1.femboy.zip differ diff --git a/archive/CreateIcarus/CreateIcarus1.21.1.zip b/archive/CreateIcarus/CreateIcarus1.21.1.zip new file mode 100644 index 0000000..f160a05 Binary files /dev/null and b/archive/CreateIcarus/CreateIcarus1.21.1.zip differ diff --git a/archive/CreateIcarus/SART1.21.1.mrpack b/archive/CreateIcarus/SART1.21.1.mrpack new file mode 100644 index 0000000..b9fedfc Binary files /dev/null and b/archive/CreateIcarus/SART1.21.1.mrpack differ diff --git a/archive/EggnogAndEnderman/Eggnog and Enderman 1.20.1.zip b/archive/EggnogAndEnderman/Eggnog and Enderman 1.20.1.zip new file mode 100644 index 0000000..c4c5fdb Binary files /dev/null and b/archive/EggnogAndEnderman/Eggnog and Enderman 1.20.1.zip differ diff --git a/archive/Robotics/Robotics 1.20.1.zip b/archive/Robotics/Robotics 1.20.1.zip new file mode 100644 index 0000000..549b609 Binary files /dev/null and b/archive/Robotics/Robotics 1.20.1.zip differ diff --git a/archive/active/CreateIcarus1.21.1.zip b/archive/active/CreateIcarus1.21.1.zip new file mode 100644 index 0000000..f160a05 Binary files /dev/null and b/archive/active/CreateIcarus1.21.1.zip differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..45c710a Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/import.png b/static/import.png new file mode 100644 index 0000000..b6d419d Binary files /dev/null and b/static/import.png differ diff --git a/www/index.lua b/www/index.lua new file mode 100644 index 0000000..c74f531 --- /dev/null +++ b/www/index.lua @@ -0,0 +1,35 @@ +local fes = require("fes") + +local std = fes.std +local u = fes.util + +local site = fes.fes() + +fes.app.global.start(fes, site) + +site:note(std.a("/archive/active/" .. (u.ls("archive/active")[1] or "unknown"), std.h3("Download latest?"))) + +site:note(u.cc { + std.h2("Server status"), + std.p(std.strong("IP: ") .. "vxserver.dev"), + fes.app.server.isOnline(fes), +}) + +site:note(u.cc { + std.h2("NeoForge Information"), + std.p("The following are instructions for NeoForge packs."), + std.ul { + std.external("https://atlauncher.com/downloads", "Download the launcher") + }, + std.p(std.strong("Note: ") .. "You need to login to your account."), + std.img("/static/import.png", "go to the instance tab, then import the modpack."), +}) + +site:note(u.cc { + std.h3("Modpacks"), + std.a("/archive", "Modpack archive"), +}) + +fes.app.global.finish(fes, site) + +return site