Compare commits

..

3 Commits

Author SHA1 Message Date
Michel Roegl-Brunner
424f7ba07b Move zipline to node 24 as per there Dockerfile 2026-05-19 08:16:55 +02:00
Michel Roegl-Brunner
fb2cbe18c5 Move papra to node 26 per there .nvmrc file 2026-05-19 08:16:13 +02:00
Michel Roegl-Brunner
0a7707d9d8 Move fumadocs to node 24 per there package.json requirements 2026-05-19 08:12:42 +02:00
8 changed files with 70 additions and 126 deletions

View File

@@ -34,7 +34,7 @@ function update_script() {
exit exit
fi fi
NODE_VERSION="22" NODE_MODULE="pnpm@latest" setup_nodejs NODE_VERSION="24" NODE_MODULE="pnpm@latest" setup_nodejs
PROJECT_NAME=$(</opt/fumadocs/.projectname) PROJECT_NAME=$(</opt/fumadocs/.projectname)
PROJECT_DIR="/opt/fumadocs/${PROJECT_NAME}" PROJECT_DIR="/opt/fumadocs/${PROJECT_NAME}"
SERVICE_NAME="fumadocs_${PROJECT_NAME}.service" SERVICE_NAME="fumadocs_${PROJECT_NAME}.service"

View File

@@ -42,6 +42,9 @@ function update_script() {
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "papra" "papra-hq/papra" "tarball" CLEAN_INSTALL=1 fetch_and_deploy_gh_release "papra" "papra-hq/papra" "tarball"
pnpm_version=$(grep -oP '"packageManager":\s*"pnpm@\K[^"]+' /opt/papra/package.json)
NODE_VERSION="26" NODE_MODULE="pnpm@$pnpm_version" setup_nodejs
msg_info "Building Application" msg_info "Building Application"
cd /opt/papra cd /opt/papra
if [[ -f /opt/papra_env.bak ]]; then if [[ -f /opt/papra_env.bak ]]; then

View File

@@ -9,7 +9,7 @@ APP="Profilarr"
var_tags="${var_tags:-arr;radarr;sonarr;config}" var_tags="${var_tags:-arr;radarr;sonarr;config}"
var_cpu="${var_cpu:-2}" var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-2048}" var_ram="${var_ram:-2048}"
var_disk="${var_disk:-7}" var_disk="${var_disk:-8}"
var_os="${var_os:-debian}" var_os="${var_os:-debian}"
var_version="${var_version:-13}" var_version="${var_version:-13}"
var_unprivileged="${var_unprivileged:-1}" var_unprivileged="${var_unprivileged:-1}"
@@ -29,71 +29,43 @@ function update_script() {
exit exit
fi fi
if [[ -d /opt/profilarr/backend ]]; then
msg_error "Profilarr v1 detected!"
echo -e "\nProfilarr v2 is a complete rewrite and is NOT compatible with v1."
echo -e "There is no migration path. Please create a new LXC container for v2.\n"
exit
fi
if check_for_gh_release "deno" "denoland/deno"; then
ARCH=$(uname -m)
fetch_and_deploy_gh_release "deno" "denoland/deno" "prebuild" "latest" "/usr/local/bin" "deno-${ARCH}-unknown-linux-gnu.zip"
fi
if check_for_gh_release "profilarr" "Dictionarry-Hub/profilarr"; then if check_for_gh_release "profilarr" "Dictionarry-Hub/profilarr"; then
msg_info "Stopping Service" msg_info "Stopping Service"
systemctl stop profilarr systemctl stop profilarr
msg_ok "Stopped Service" msg_ok "Stopped Service"
msg_info "Backing up Data"
if [[ -d /config ]]; then
cp -r /config /opt/profilarr_config_backup
fi
msg_ok "Backed up Data"
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr" "tarball" CLEAN_INSTALL=1 fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr" "tarball"
PROFILARR_VERSION=$(cat ~/.profilarr)
msg_info "Building Profilarr v${PROFILARR_VERSION} (Patience)" msg_info "Installing Python Dependencies"
cd /opt/profilarr cd /opt/profilarr/backend
cat >src/lib/shared/build.ts <<EOF $STD uv venv --clear /opt/profilarr/backend/.venv
// Generated at update time. Do not hand-edit. sed 's/==/>=/g' requirements.txt >requirements-relaxed.txt
export type Channel = 'stable' | 'develop' | 'dev'; $STD uv pip install --python /opt/profilarr/backend/.venv/bin/python -r requirements-relaxed.txt
rm -f requirements-relaxed.txt
msg_ok "Installed Python Dependencies"
export interface BuildInfo { msg_info "Building Frontend"
readonly version: string; if [[ -d /opt/profilarr/frontend ]]; then
readonly channel: Channel; cd /opt/profilarr/frontend
readonly commit: string | null; $STD npm install
readonly builtAt: string | null; $STD npm run build
} cp -r dist /opt/profilarr/backend/app/static
fi
msg_ok "Built Frontend"
export const build: BuildInfo = { msg_info "Restoring Data"
version: '${PROFILARR_VERSION}', if [[ -d /opt/profilarr_config_backup ]]; then
channel: 'stable', mkdir -p /config
commit: null, cp -r /opt/profilarr_config_backup/. /config/
builtAt: '$(date -u +"%Y-%m-%dT%H:%M:%SZ")' rm -rf /opt/profilarr_config_backup
}; fi
EOF msg_ok "Restored Data"
$STD deno install --node-modules-dir
export APP_BASE_PATH=/opt/profilarr/dist/build
export VITE_CHANNEL=stable
$STD deno run -A npm:vite build
DENO_TARGET="${ARCH}-unknown-linux-gnu"
$STD deno compile \
--no-check \
--allow-net \
--allow-read \
--allow-write \
--allow-env \
--allow-ffi \
--allow-run \
--allow-sys \
--target "$DENO_TARGET" \
--output dist/build/profilarr \
dist/build/mod.ts
msg_ok "Built Profilarr"
msg_info "Updating Profilarr"
cp dist/build/profilarr /opt/profilarr/app/profilarr
cp dist/build/server.js /opt/profilarr/app/server.js
cp -r dist/build/static /opt/profilarr/app/static
chmod +x /opt/profilarr/app/profilarr
msg_ok "Updated Profilarr"
msg_info "Starting Service" msg_info "Starting Service"
systemctl start profilarr systemctl start profilarr

View File

@@ -27,7 +27,7 @@ function update_script() {
exit exit
fi fi
NODE_VERSION="22" NODE_MODULE="pnpm" setup_nodejs NODE_VERSION="24" NODE_MODULE="pnpm" setup_nodejs
if check_for_gh_release "zipline" "diced/zipline"; then if check_for_gh_release "zipline" "diced/zipline"; then
msg_info "Stopping Service" msg_info "Stopping Service"

View File

@@ -19,7 +19,7 @@ $STD apt install -y \
git git
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
NODE_VERSION="22" NODE_MODULE="pnpm" setup_nodejs NODE_VERSION="24" NODE_MODULE="pnpm" setup_nodejs
msg_info "Preparing Fumadocs - " msg_info "Preparing Fumadocs - "
mkdir -p /opt/fumadocs mkdir -p /opt/fumadocs

View File

@@ -24,7 +24,7 @@ RELEASE=$(curl -fsSL https://api.github.com/repos/papra-hq/papra/releases | grep
fetch_and_deploy_gh_release "papra" "papra-hq/papra" "tarball" "${RELEASE}" "/opt/papra" fetch_and_deploy_gh_release "papra" "papra-hq/papra" "tarball" "${RELEASE}" "/opt/papra"
pnpm_version=$(grep -oP '"packageManager":\s*"pnpm@\K[^"]+' /opt/papra/package.json) pnpm_version=$(grep -oP '"packageManager":\s*"pnpm@\K[^"]+' /opt/papra/package.json)
NODE_VERSION="24" NODE_MODULE="pnpm@$pnpm_version" setup_nodejs NODE_VERSION="26" NODE_MODULE="pnpm@$pnpm_version" setup_nodejs
msg_info "Installing Papra (Patience)" msg_info "Installing Papra (Patience)"
cd /opt/papra cd /opt/papra

View File

@@ -15,83 +15,52 @@ update_os
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt install -y \ $STD apt install -y \
git \ build-essential \
libsqlite3-0 python3-dev \
libffi-dev \
libssl-dev \
git
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
ARCH=$(uname -m) PYTHON_VERSION="3.12" setup_uv
fetch_and_deploy_gh_release "deno" "denoland/deno" "prebuild" "latest" "/usr/local/bin" "deno-${ARCH}-unknown-linux-gnu.zip" NODE_VERSION="22" setup_nodejs
msg_info "Creating directories"
mkdir -p /opt/profilarr \
/config
msg_ok "Created directories"
fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr" "tarball" fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr" "tarball"
PROFILARR_VERSION=$(cat ~/.profilarr)
msg_info "Building Profilarr v${PROFILARR_VERSION} (Patience)" msg_info "Installing Python Dependencies"
cd /opt/profilarr cd /opt/profilarr/backend
cat >src/lib/shared/build.ts <<EOF $STD uv venv /opt/profilarr/backend/.venv
// Generated at install time. Do not hand-edit. sed 's/==/>=/g' requirements.txt >requirements-relaxed.txt
export type Channel = 'stable' | 'develop' | 'dev'; $STD uv pip install --python /opt/profilarr/backend/.venv/bin/python -r requirements-relaxed.txt
rm -f requirements-relaxed.txt
msg_ok "Installed Python Dependencies"
export interface BuildInfo { msg_info "Building Frontend"
readonly version: string; cd /opt/profilarr/frontend
readonly channel: Channel; $STD npm install
readonly commit: string | null; $STD npm run build
readonly builtAt: string | null; cp -r dist /opt/profilarr/backend/app/static
} msg_ok "Built Frontend"
export const build: BuildInfo = {
version: '${PROFILARR_VERSION}',
channel: 'stable',
commit: null,
builtAt: '$(date -u +"%Y-%m-%dT%H:%M:%SZ")'
};
EOF
$STD deno install --node-modules-dir
export APP_BASE_PATH=/opt/profilarr/dist/build
export VITE_CHANNEL=stable
$STD deno run -A npm:vite build
DENO_TARGET="${ARCH}-unknown-linux-gnu"
$STD deno compile \
--no-check \
--allow-net \
--allow-read \
--allow-write \
--allow-env \
--allow-ffi \
--allow-run \
--allow-sys \
--target "$DENO_TARGET" \
--output dist/build/profilarr \
dist/build/mod.ts
msg_ok "Built Profilarr"
msg_info "Installing Profilarr"
mkdir -p /opt/profilarr/app
cp dist/build/profilarr /opt/profilarr/app/profilarr
cp dist/build/server.js /opt/profilarr/app/server.js
cp -r dist/build/static /opt/profilarr/app/static
chmod +x /opt/profilarr/app/profilarr
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_info "Creating Service" msg_info "Creating Service"
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 Platform for Radarr/Sonarr
After=network.target After=network.target
[Service] [Service]
Type=simple Type=simple
WorkingDirectory=/opt/profilarr/app User=root
EnvironmentFile=/etc/default/profilarr WorkingDirectory=/opt/profilarr/backend
Environment=HOME=/root Environment="PATH=/opt/profilarr/backend/.venv/bin:/usr/local/bin:/usr/bin:/bin"
ExecStart=/opt/profilarr/app/profilarr Environment="PYTHONPATH=/opt/profilarr/backend"
Restart=always ExecStart=/opt/profilarr/backend/.venv/bin/gunicorn --bind 0.0.0.0:6868 --timeout 600 app.main:create_app()
Restart=on-failure
RestartSec=5 RestartSec=5
[Install] [Install]

View File

@@ -14,7 +14,7 @@ setting_up_container
network_check network_check
update_os update_os
NODE_VERSION="22" NODE_MODULE="pnpm" setup_nodejs NODE_VERSION="24" NODE_MODULE="pnpm" setup_nodejs
PG_VERSION="17" setup_postgresql PG_VERSION="17" setup_postgresql
PG_DB_NAME="ziplinedb" PG_DB_USER="zipline" setup_postgresql_db PG_DB_NAME="ziplinedb" PG_DB_USER="zipline" setup_postgresql_db
fetch_and_deploy_gh_release "zipline" "diced/zipline" "tarball" fetch_and_deploy_gh_release "zipline" "diced/zipline" "tarball"