mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-20 23:55:03 +00:00
106 lines
2.6 KiB
Bash
106 lines
2.6 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: michelroegl-brunner
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/Dictionarry-Hub/profilarr
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt install -y \
|
|
git \
|
|
libsqlite3-0
|
|
msg_ok "Installed Dependencies"
|
|
|
|
ARCH=$(uname -m)
|
|
fetch_and_deploy_gh_release "deno" "denoland/deno" "prebuild" "latest" "/usr/local/bin" "deno-${ARCH}-unknown-linux-gnu.zip"
|
|
fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr" "tarball"
|
|
PROFILARR_VERSION=$(cat ~/.profilarr)
|
|
|
|
msg_info "Building Profilarr v${PROFILARR_VERSION} (Patience)"
|
|
cd /opt/profilarr
|
|
cat >src/lib/shared/build.ts <<EOF
|
|
// Generated at install time. Do not hand-edit.
|
|
export type Channel = 'stable' | 'develop' | 'dev';
|
|
|
|
export interface BuildInfo {
|
|
readonly version: string;
|
|
readonly channel: Channel;
|
|
readonly commit: string | null;
|
|
readonly builtAt: string | null;
|
|
}
|
|
|
|
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"
|
|
cat <<EOF >/etc/systemd/system/profilarr.service
|
|
[Unit]
|
|
Description=Profilarr - Configuration Management for Radarr/Sonarr
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/opt/profilarr/app
|
|
EnvironmentFile=/etc/default/profilarr
|
|
Environment=HOME=/root
|
|
ExecStart=/opt/profilarr/app/profilarr
|
|
Restart=always
|
|
RestartSec=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now profilarr
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|