mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-21 16:04:57 +02:00
Compare commits
4 Commits
node_js_ve
...
feat/profi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2ac0207a7f | ||
|
|
16c4fa4ee9 | ||
|
|
0586b1f29e | ||
|
|
9dc35463a9 |
@@ -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
|
||||||
|
|||||||
@@ -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]
|
||||||
|
|||||||
Reference in New Issue
Block a user