update statuses

This commit is contained in:
Sam Heinz
2025-05-15 12:08:55 +10:00
parent 678a8fa1c0
commit 227c99fcd0
4 changed files with 22 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
{
"2fauth.json": "✅",
"actualbudget.json": "🚧",
"actualbudget.json": "🧪",
"add-lxc-iptag.json": "✅",
"add-netbird-lxc.json": "✅",
"add-tailscale-lxc.json": "✅",
@@ -9,8 +9,8 @@
"agentdvr.json": "✅",
"all-templates.json": "✅",
"alpine-it-tools.json": "✅",
"alpine-rclone.json": "🚧",
"alpine-tinyauth.json": "🚧",
"alpine-rclone.json": "🧪",
"alpine-tinyauth.json": "🧪",
"alpine.json": "✅",
"apache-cassandra.json": "✅",
"apache-couchdb.json": "✅",
@@ -21,7 +21,7 @@
"archivebox.json": "✅",
"archlinux-vm.json": "🚧",
"aria2.json": "✅",
"asterisk.json": "🚧",
"asterisk.json": "🧪",
"audiobookshelf.json": "✅",
"authelia.json": "✅",
"authentik.json": "🚧",
@@ -63,8 +63,8 @@
"docker-vm.json": "🚧",
"docker.json": "✅",
"dockge.json": "✅",
"docmost.json": "🚧",
"documenso.json": "🚧",
"docmost.json": "🧪",
"documenso.json": "🧪",
"dolibarr.json": "✅",
"dotnetaspwebapi.json": "🚧",
"duplicati.json": "✅",
@@ -74,21 +74,21 @@
"ersatztv.json": "✅",
"esphome.json": "✅",
"evcc.json": "✅",
"excalidraw.json": "🚧",
"excalidraw.json": "🧪",
"fenrus.json": "✅",
"fhem.json": "✅",
"filebrowser.json": "✅",
"fileflows.json": "🚧",
"fileflows.json": "🧪",
"firefly.json": "✅",
"flaresolverr.json": "✅",
"flowiseai.json": "🚧",
"fluid-calendar.json": "🚧",
"fluid-calendar.json": "🧪",
"forgejo.json": "✅",
"freshrss.json": "✅",
"frigate.json": "✅",
"fstrim.json": "✅",
"fumadocs.json": "🚧",
"gatus.json": "🚧",
"fumadocs.json": "🧪",
"gatus.json": "🧪",
"ghost.json": "✅",
"gitea.json": "✅",
"glance.json": "✅",
@@ -334,4 +334,4 @@
"zitadel.json": "🚧",
"zoraxy.json": "✅",
"zwave-js-ui.json": "✅"
}
}

View File

@@ -23,7 +23,7 @@ msg_info "Installing rclone"
temp_file=$(mktemp)
mkdir -p /opt/rclone
RELEASE=$(curl -s https://api.github.com/repos/rclone/rclone/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
curl -fsSL "https://github.com/rclone/rclone/releases/download/v${RELEASE}/rclone-v${RELEASE}-linux-amd64.zip" -o "$temp_file"
curl -fsSL "https://github.com/rclone/rclone/releases/download/v${RELEASE}/rclone-v${RELEASE}-linux-arm64.zip" -o "$temp_file"
$STD unzip -j "$temp_file" '*/**' -d /opt/rclone
cd /opt/rclone
RCLONE_PASSWORD=$(head -c 16 /dev/urandom | xxd -p -c 16)

View File

@@ -26,6 +26,7 @@ $STD apt-get install -y \
jq \
python3 \
python3-bcrypt
rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
msg_ok "Installed Dependencies"
NODE_VERSION="22" NODE_MODULE="turbo@1.9.3" install_node_and_modules

View File

@@ -26,13 +26,14 @@ msg_info "Installing Hardware Acceleration"
$STD apt-get -y install {va-driver-all,ocl-icd-libopencl1,vainfo}
msg_ok "Installed and Set Up Hardware Acceleration"
msg_info "Installing ASP.NET Core Runtime"
curl -fsSL https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -o packages-microsoft-prod.deb
$STD dpkg -i packages-microsoft-prod.deb
rm -rf packages-microsoft-prod.deb
$STD apt-get update
$STD apt-get install -y aspnetcore-runtime-8.0
msg_ok "Installed ASP.NET Core Runtime"
msg_info "Installing ASP.NET Core 7 SDK"
curl -SL -o aspnet.tar.gz https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-linux-arm64.tar.gz
$STD mkdir -p /usr/share/dotnet
$STD tar -zxf aspnet.tar.gz -C /usr/share/dotnet
ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet
$STD rm -f aspnet.tar.gz
msg_ok "Installed ASP.NET Core 7 SDK"
msg_info "Setup ${APPLICATION}"
$STD ln -svf /usr/bin/ffmpeg /usr/local/bin/ffmpeg