Compare commits

..

4 Commits

Author SHA1 Message Date
CanbiZ (MickLesk)
2ac0207a7f Refactor Profilarr installation script for Deno 2026-05-20 15:13:39 +02:00
CanbiZ (MickLesk)
16c4fa4ee9 Refactor Profilarr setup script for efficiency
Updated default RAM and disk values, modified version retrieval method, and streamlined architecture detection for Deno.
2026-05-20 15:12:52 +02:00
MickLesk
0586b1f29e Profilarr: standardize architecture case statements in scripts & v2 Support 2026-05-19 08:23:20 +02:00
MickLesk
9dc35463a9 feat(profilarr): rewrite for v2 Deno-based architecture with v1 migration block 2026-05-19 08:21:25 +02:00
8 changed files with 126 additions and 70 deletions

View File

@@ -34,7 +34,7 @@ function update_script() {
exit exit
fi fi
NODE_VERSION="24" NODE_MODULE="pnpm@latest" setup_nodejs NODE_VERSION="22" 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,9 +42,6 @@ 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:-8}" var_disk="${var_disk:-7}"
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,43 +29,71 @@ 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 "Installing Python Dependencies" msg_info "Building Profilarr v${PROFILARR_VERSION} (Patience)"
cd /opt/profilarr/backend cd /opt/profilarr
$STD uv venv --clear /opt/profilarr/backend/.venv cat >src/lib/shared/build.ts <<EOF
sed 's/==/>=/g' requirements.txt >requirements-relaxed.txt // Generated at update time. Do not hand-edit.
$STD uv pip install --python /opt/profilarr/backend/.venv/bin/python -r requirements-relaxed.txt export type Channel = 'stable' | 'develop' | 'dev';
rm -f requirements-relaxed.txt
msg_ok "Installed Python Dependencies"
msg_info "Building Frontend" export interface BuildInfo {
if [[ -d /opt/profilarr/frontend ]]; then 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 }
fi
msg_ok "Built Frontend"
msg_info "Restoring Data" export const build: BuildInfo = {
if [[ -d /opt/profilarr_config_backup ]]; then version: '${PROFILARR_VERSION}',
mkdir -p /config channel: 'stable',
cp -r /opt/profilarr_config_backup/. /config/ commit: null,
rm -rf /opt/profilarr_config_backup builtAt: '$(date -u +"%Y-%m-%dT%H:%M:%SZ")'
fi };
msg_ok "Restored Data" 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 "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="24" NODE_MODULE="pnpm" setup_nodejs NODE_VERSION="22" 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="24" NODE_MODULE="pnpm" setup_nodejs NODE_VERSION="22" 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="26" NODE_MODULE="pnpm@$pnpm_version" setup_nodejs NODE_VERSION="24" 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,52 +15,83 @@ update_os
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt install -y \ $STD apt install -y \
build-essential \ git \
python3-dev \ libsqlite3-0
libffi-dev \
libssl-dev \
git
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
PYTHON_VERSION="3.12" setup_uv ARCH=$(uname -m)
NODE_VERSION="22" setup_nodejs fetch_and_deploy_gh_release "deno" "denoland/deno" "prebuild" "latest" "/usr/local/bin" "deno-${ARCH}-unknown-linux-gnu.zip"
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 "Installing Python Dependencies" msg_info "Building Profilarr v${PROFILARR_VERSION} (Patience)"
cd /opt/profilarr/backend cd /opt/profilarr
$STD uv venv /opt/profilarr/backend/.venv cat >src/lib/shared/build.ts <<EOF
sed 's/==/>=/g' requirements.txt >requirements-relaxed.txt // Generated at install time. Do not hand-edit.
$STD uv pip install --python /opt/profilarr/backend/.venv/bin/python -r requirements-relaxed.txt export type Channel = 'stable' | 'develop' | 'dev';
rm -f requirements-relaxed.txt
msg_ok "Installed Python Dependencies"
msg_info "Building Frontend" export interface BuildInfo {
cd /opt/profilarr/frontend readonly version: string;
$STD npm install readonly channel: Channel;
$STD npm run build readonly commit: string | null;
cp -r dist /opt/profilarr/backend/app/static readonly builtAt: string | null;
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 Platform for Radarr/Sonarr Description=Profilarr - Configuration Management for Radarr/Sonarr
After=network.target After=network.target
[Service] [Service]
Type=simple Type=simple
User=root WorkingDirectory=/opt/profilarr/app
WorkingDirectory=/opt/profilarr/backend EnvironmentFile=/etc/default/profilarr
Environment="PATH=/opt/profilarr/backend/.venv/bin:/usr/local/bin:/usr/bin:/bin" Environment=HOME=/root
Environment="PYTHONPATH=/opt/profilarr/backend" ExecStart=/opt/profilarr/app/profilarr
ExecStart=/opt/profilarr/backend/.venv/bin/gunicorn --bind 0.0.0.0:6868 --timeout 600 app.main:create_app() Restart=always
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="24" NODE_MODULE="pnpm" setup_nodejs NODE_VERSION="22" 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"