Refactor Profilarr installation script for Deno

This commit is contained in:
CanbiZ (MickLesk)
2026-05-20 15:13:39 +02:00
committed by GitHub
parent 16c4fa4ee9
commit 2ac0207a7f
+12 -23
View File
@@ -15,26 +15,14 @@ update_os
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt install -y \ $STD apt install -y \
unzip \
git \ git \
libsqlite3-0 libsqlite3-0
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Deno"
DENO_VERSION=$(curl -fsSL "https://api.github.com/repos/denoland/deno/releases/latest" | grep '"tag_name"' | sed 's/.*"v\([^"]*\)".*/\1/')
ARCH=$(uname -m) ARCH=$(uname -m)
case "$ARCH" in fetch_and_deploy_gh_release "deno" "denoland/deno" "prebuild" "latest" "/usr/local/bin" "deno-${ARCH}-unknown-linux-gnu.zip"
aarch64) DENO_FILE="deno-aarch64-unknown-linux-gnu.zip" ;;
*) DENO_FILE="deno-x86_64-unknown-linux-gnu.zip" ;;
esac
curl -fsSL "https://github.com/denoland/deno/releases/download/v${DENO_VERSION}/${DENO_FILE}" -o /tmp/deno.zip
$STD unzip -qo /tmp/deno.zip -d /usr/local/bin/
rm /tmp/deno.zip
chmod +x /usr/local/bin/deno
msg_ok "Installed Deno v${DENO_VERSION}"
fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr" "tarball" fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr" "tarball"
PROFILARR_VERSION=$(curl -fsSL "https://api.github.com/repos/Dictionarry-Hub/profilarr/releases/latest" | grep '"tag_name"' | sed 's/.*"v\([^"]*\)".*/\1/') PROFILARR_VERSION=$(cat ~/.profilarr)
msg_info "Building Profilarr v${PROFILARR_VERSION} (Patience)" msg_info "Building Profilarr v${PROFILARR_VERSION} (Patience)"
cd /opt/profilarr cd /opt/profilarr
@@ -60,10 +48,7 @@ $STD deno install --node-modules-dir
export APP_BASE_PATH=/opt/profilarr/dist/build export APP_BASE_PATH=/opt/profilarr/dist/build
export VITE_CHANNEL=stable export VITE_CHANNEL=stable
$STD deno run -A npm:vite build $STD deno run -A npm:vite build
case "$ARCH" in DENO_TARGET="${ARCH}-unknown-linux-gnu"
aarch64) DENO_TARGET="aarch64-unknown-linux-gnu" ;;
*) DENO_TARGET="x86_64-unknown-linux-gnu" ;;
esac
$STD deno compile \ $STD deno compile \
--no-check \ --no-check \
--allow-net \ --allow-net \
@@ -85,10 +70,16 @@ cp dist/build/server.js /opt/profilarr/app/server.js
cp -r dist/build/static /opt/profilarr/app/static cp -r dist/build/static /opt/profilarr/app/static
chmod +x /opt/profilarr/app/profilarr chmod +x /opt/profilarr/app/profilarr
mkdir -p /var/lib/profilarr/{data,logs,backups,databases} mkdir -p /var/lib/profilarr/{data,logs,backups,databases}
SQLITE_PATH="/usr/lib/${ARCH}-linux-gnu/libsqlite3.so.0"
cat <<EOF >/etc/default/profilarr
PORT=6868
HOST=0.0.0.0
APP_BASE_PATH=/var/lib/profilarr
DENO_SQLITE_PATH=${SQLITE_PATH}
EOF
msg_ok "Installed Profilarr" msg_ok "Installed Profilarr"
msg_info "Creating Service" msg_info "Creating Service"
SQLITE_PATH="/usr/lib/${ARCH}-linux-gnu/libsqlite3.so.0"
cat <<EOF >/etc/systemd/system/profilarr.service cat <<EOF >/etc/systemd/system/profilarr.service
[Unit] [Unit]
Description=Profilarr - Configuration Management for Radarr/Sonarr Description=Profilarr - Configuration Management for Radarr/Sonarr
@@ -97,10 +88,8 @@ After=network.target
[Service] [Service]
Type=simple Type=simple
WorkingDirectory=/opt/profilarr/app WorkingDirectory=/opt/profilarr/app
Environment="PORT=6868" EnvironmentFile=/etc/default/profilarr
Environment="HOST=0.0.0.0" Environment=HOME=/root
Environment="APP_BASE_PATH=/var/lib/profilarr"
Environment="DENO_SQLITE_PATH=${SQLITE_PATH}"
ExecStart=/opt/profilarr/app/profilarr ExecStart=/opt/profilarr/app/profilarr
Restart=always Restart=always
RestartSec=5 RestartSec=5