This commit is contained in:
11
.gitea/workflows/fsdproject-deploy.yaml
Normal file
11
.gitea/workflows/fsdproject-deploy.yaml
Normal file
@@ -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
|
||||
BIN
archive/CreateIcarus/CI-dev.zip
Normal file
BIN
archive/CreateIcarus/CI-dev.zip
Normal file
Binary file not shown.
BIN
archive/CreateIcarus/Create Icarus 1.21.1 (2).zip
Normal file
BIN
archive/CreateIcarus/Create Icarus 1.21.1 (2).zip
Normal file
Binary file not shown.
BIN
archive/CreateIcarus/Create Icarus 1.21.1.zip
Normal file
BIN
archive/CreateIcarus/Create Icarus 1.21.1.zip
Normal file
Binary file not shown.
BIN
archive/CreateIcarus/CreateIcarus1.21.1.femboy.zip
Normal file
BIN
archive/CreateIcarus/CreateIcarus1.21.1.femboy.zip
Normal file
Binary file not shown.
BIN
archive/CreateIcarus/CreateIcarus1.21.1.zip
Normal file
BIN
archive/CreateIcarus/CreateIcarus1.21.1.zip
Normal file
Binary file not shown.
BIN
archive/CreateIcarus/SART1.21.1.mrpack
Normal file
BIN
archive/CreateIcarus/SART1.21.1.mrpack
Normal file
Binary file not shown.
BIN
archive/EggnogAndEnderman/Eggnog and Enderman 1.20.1.zip
Normal file
BIN
archive/EggnogAndEnderman/Eggnog and Enderman 1.20.1.zip
Normal file
Binary file not shown.
BIN
archive/Robotics/Robotics 1.20.1.zip
Normal file
BIN
archive/Robotics/Robotics 1.20.1.zip
Normal file
Binary file not shown.
BIN
archive/active/CreateIcarus1.21.1.zip
Normal file
BIN
archive/active/CreateIcarus1.21.1.zip
Normal file
Binary file not shown.
BIN
static/favicon.ico
Normal file
BIN
static/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 318 B |
BIN
static/import.png
Normal file
BIN
static/import.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 272 KiB |
35
www/index.lua
Normal file
35
www/index.lua
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user