mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-19 15:04:56 +02:00
Compare commits
3 Commits
fix/reacti
...
node_js_ve
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
424f7ba07b | ||
|
|
fb2cbe18c5 | ||
|
|
0a7707d9d8 |
17
CHANGELOG.md
17
CHANGELOG.md
@@ -464,23 +464,6 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
## 2026-05-19
|
|
||||||
|
|
||||||
### 🆕 New Scripts
|
|
||||||
|
|
||||||
- LobeHub ([#14441](https://github.com/community-scripts/ProxmoxVE/pull/14441))
|
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
|
||||||
|
|
||||||
- Update nodejs Versions [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#14582](https://github.com/community-scripts/ProxmoxVE/pull/14582))
|
|
||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
|
||||||
|
|
||||||
- ReactiveResume: set correct WorkingDirectory for systemd service [@MickLesk](https://github.com/MickLesk) ([#14579](https://github.com/community-scripts/ProxmoxVE/pull/14579))
|
|
||||||
- Sparkyfitness: add missing nginx template variable substitutions [@MickLesk](https://github.com/MickLesk) ([#14578](https://github.com/community-scripts/ProxmoxVE/pull/14578))
|
|
||||||
- Wanderer: include dev dependencies during build [@MickLesk](https://github.com/MickLesk) ([#14577](https://github.com/community-scripts/ProxmoxVE/pull/14577))
|
|
||||||
- Whisparr: switch from nightly to stable GitHub release [@MickLesk](https://github.com/MickLesk) ([#14581](https://github.com/community-scripts/ProxmoxVE/pull/14581))
|
|
||||||
|
|
||||||
## 2026-05-18
|
## 2026-05-18
|
||||||
|
|
||||||
### 🆕 New Scripts
|
### 🆕 New Scripts
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
__ __ __ __ __
|
|
||||||
/ / ____ / /_ ___ / / / /_ __/ /_
|
|
||||||
/ / / __ \/ __ \/ _ \/ /_/ / / / / __ \
|
|
||||||
/ /___/ /_/ / /_/ / __/ __ / /_/ / /_/ /
|
|
||||||
/_____/\____/_.___/\___/_/ /_/\__,_/_.___/
|
|
||||||
|
|
||||||
@@ -1,77 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
|
||||||
# Author: MickLesk (CanbiZ)
|
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
||||||
# Source: https://github.com/lobehub/lobehub
|
|
||||||
|
|
||||||
APP="LobeHub"
|
|
||||||
var_tags="${var_tags:-ai;chat}"
|
|
||||||
var_cpu="${var_cpu:-6}"
|
|
||||||
var_ram="${var_ram:-10240}"
|
|
||||||
var_disk="${var_disk:-15}"
|
|
||||||
var_os="${var_os:-debian}"
|
|
||||||
var_version="${var_version:-13}"
|
|
||||||
var_unprivileged="${var_unprivileged:-1}"
|
|
||||||
|
|
||||||
header_info "$APP"
|
|
||||||
variables
|
|
||||||
color
|
|
||||||
catch_errors
|
|
||||||
|
|
||||||
function update_script() {
|
|
||||||
header_info
|
|
||||||
check_container_storage
|
|
||||||
check_container_resources
|
|
||||||
|
|
||||||
if [[ ! -d /opt/lobehub ]]; then
|
|
||||||
msg_error "No ${APP} Installation Found!"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
if check_for_gh_release "lobehub" "lobehub/lobehub"; then
|
|
||||||
msg_info "Stopping Services"
|
|
||||||
systemctl stop lobehub
|
|
||||||
msg_ok "Stopped Services"
|
|
||||||
|
|
||||||
msg_info "Backing up Data"
|
|
||||||
cp /opt/lobehub/.env /opt/lobehub.env.bak
|
|
||||||
msg_ok "Backed up Data"
|
|
||||||
|
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "lobehub" "lobehub/lobehub" "tarball"
|
|
||||||
|
|
||||||
msg_info "Restoring Configuration"
|
|
||||||
cp /opt/lobehub.env.bak /opt/lobehub/.env
|
|
||||||
rm -f /opt/lobehub.env.bak
|
|
||||||
msg_ok "Restored Configuration"
|
|
||||||
|
|
||||||
msg_info "Building Application"
|
|
||||||
cd /opt/lobehub
|
|
||||||
export NODE_OPTIONS="--max-old-space-size=8192"
|
|
||||||
$STD pnpm install
|
|
||||||
$STD pnpm run build:docker
|
|
||||||
unset NODE_OPTIONS
|
|
||||||
msg_ok "Built Application"
|
|
||||||
|
|
||||||
msg_info "Running Database Migrations"
|
|
||||||
cd /opt/lobehub
|
|
||||||
set -a && source /opt/lobehub/.env && set +a
|
|
||||||
$STD node /opt/lobehub/.next/standalone/docker.cjs
|
|
||||||
msg_ok "Ran Database Migrations"
|
|
||||||
|
|
||||||
msg_info "Starting Services"
|
|
||||||
systemctl start lobehub
|
|
||||||
msg_ok "Started Services"
|
|
||||||
msg_ok "Updated successfully!"
|
|
||||||
fi
|
|
||||||
exit
|
|
||||||
}
|
|
||||||
|
|
||||||
start
|
|
||||||
build_container
|
|
||||||
description
|
|
||||||
|
|
||||||
msg_ok "Completed Successfully!\n"
|
|
||||||
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
||||||
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
|
||||||
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3210${CL}"
|
|
||||||
@@ -48,24 +48,9 @@ function update_script() {
|
|||||||
export NODE_ENV="production"
|
export NODE_ENV="production"
|
||||||
$STD pnpm install --frozen-lockfile
|
$STD pnpm install --frozen-lockfile
|
||||||
$STD pnpm run build
|
$STD pnpm run build
|
||||||
msg_info "Deploying Nitro Runtime Externals"
|
|
||||||
$STD pnpm --filter=@reactive-resume/runtime-externals deploy --prod --legacy /tmp/rr-runtime
|
|
||||||
cp -r /tmp/rr-runtime/node_modules/. /opt/reactive-resume/apps/web/node_modules/
|
|
||||||
rm -rf /tmp/rr-runtime
|
|
||||||
msg_ok "Deployed Nitro Runtime Externals"
|
|
||||||
mv /opt/reactive-resume.env.bak /opt/reactive-resume/.env
|
mv /opt/reactive-resume.env.bak /opt/reactive-resume/.env
|
||||||
# Inject ENCRYPTION_SECRET if missing (required for AI providers since v5.1.4)
|
|
||||||
if ! grep -q '^ENCRYPTION_SECRET=' /opt/reactive-resume/.env; then
|
|
||||||
ENCRYPTION_SECRET=$(openssl rand -hex 32)
|
|
||||||
echo "ENCRYPTION_SECRET=${ENCRYPTION_SECRET}" >> /opt/reactive-resume/.env
|
|
||||||
fi
|
|
||||||
msg_ok "Updated Reactive Resume"
|
msg_ok "Updated Reactive Resume"
|
||||||
|
|
||||||
msg_info "Updating Service"
|
|
||||||
sed -i 's|WorkingDirectory=/opt/reactive-resume$|WorkingDirectory=/opt/reactive-resume/apps/web|' /etc/systemd/system/reactive-resume.service
|
|
||||||
systemctl daemon-reload
|
|
||||||
msg_ok "Updated Service"
|
|
||||||
|
|
||||||
msg_info "Restarting services"
|
msg_info "Restarting services"
|
||||||
systemctl start chromium-printer reactive-resume
|
systemctl start chromium-printer reactive-resume
|
||||||
msg_ok "Restarted services"
|
msg_ok "Restarted services"
|
||||||
|
|||||||
@@ -62,18 +62,6 @@ function update_script() {
|
|||||||
cp -a /opt/sparkyfitness/SparkyFitnessFrontend/dist/. /var/www/sparkyfitness/
|
cp -a /opt/sparkyfitness/SparkyFitnessFrontend/dist/. /var/www/sparkyfitness/
|
||||||
msg_ok "Updated Sparky Fitness Frontend"
|
msg_ok "Updated Sparky Fitness Frontend"
|
||||||
|
|
||||||
msg_info "Refreshing Nginx Config"
|
|
||||||
sed \
|
|
||||||
-e 's|${SPARKY_FITNESS_SERVER_HOST}|127.0.0.1|g' \
|
|
||||||
-e 's|${SPARKY_FITNESS_SERVER_PORT}|3010|g' \
|
|
||||||
-e 's|${NGINX_LISTEN_PORT}|80|g' \
|
|
||||||
-e 's|${NGINX_ACCESS_LOG}|/var/log/nginx/sparkyfitness.access.log|g' \
|
|
||||||
-e 's|${NGINX_ERROR_LOG}|/var/log/nginx/sparkyfitness.error.log|g' \
|
|
||||||
-e 's|root /usr/share/nginx/html;|root /var/www/sparkyfitness;|g' \
|
|
||||||
-e 's|server_name localhost;|server_name _;|g' \
|
|
||||||
"/opt/sparkyfitness/docker/nginx.conf" >/etc/nginx/sites-available/sparkyfitness
|
|
||||||
msg_ok "Refreshed Nginx Config"
|
|
||||||
|
|
||||||
msg_info "Refreshing SparkyFitness Service"
|
msg_info "Refreshing SparkyFitness Service"
|
||||||
cat <<EOF >/etc/systemd/system/sparkyfitness-server.service
|
cat <<EOF >/etc/systemd/system/sparkyfitness-server.service
|
||||||
[Unit]
|
[Unit]
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ function update_script() {
|
|||||||
$STD go mod tidy
|
$STD go mod tidy
|
||||||
$STD go build
|
$STD go build
|
||||||
cd /opt/wanderer/source/web
|
cd /opt/wanderer/source/web
|
||||||
$STD npm ci
|
$STD npm ci --omit=dev
|
||||||
$STD npm run build
|
$STD npm run build
|
||||||
msg_ok "Updated wanderer"
|
msg_ok "Updated wanderer"
|
||||||
|
|
||||||
|
|||||||
@@ -1,101 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
|
||||||
# Author: MickLesk (CanbiZ)
|
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
||||||
# Source: https://github.com/lobehub/lobehub
|
|
||||||
|
|
||||||
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 build-essential
|
|
||||||
msg_ok "Installed Dependencies"
|
|
||||||
|
|
||||||
PG_VERSION="17" PG_MODULES="pgvector" setup_postgresql
|
|
||||||
|
|
||||||
CODENAME=$(. /etc/os-release && echo "${VERSION_CODENAME:-bookworm}")
|
|
||||||
fetch_and_deploy_gh_release "paradedb" "paradedb/paradedb" "binary" "latest" "" "postgresql-17-pg-search_*-1PARADEDB-${CODENAME}_$(dpkg --print-architecture).deb"
|
|
||||||
|
|
||||||
msg_info "Configuring pg_search preload library"
|
|
||||||
if ! grep -q "shared_preload_libraries.*pg_search" /etc/postgresql/17/main/postgresql.conf; then
|
|
||||||
echo "shared_preload_libraries = 'pg_search'" >>/etc/postgresql/17/main/postgresql.conf
|
|
||||||
fi
|
|
||||||
systemctl restart postgresql
|
|
||||||
msg_ok "Configured pg_search preload library"
|
|
||||||
|
|
||||||
PG_DB_NAME="lobehub" PG_DB_USER="lobehub" PG_DB_EXTENSIONS="vector,pg_search" setup_postgresql_db
|
|
||||||
NODE_VERSION="24" NODE_MODULE="pnpm" setup_nodejs
|
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "lobehub" "lobehub/lobehub" "tarball"
|
|
||||||
|
|
||||||
msg_info "Building Application"
|
|
||||||
cd /opt/lobehub
|
|
||||||
export DATABASE_URL="postgres://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}"
|
|
||||||
export DATABASE_DRIVER="node"
|
|
||||||
export KEY_VAULTS_SECRET="$(openssl rand -base64 32)"
|
|
||||||
export AUTH_SECRET="$(openssl rand -base64 32)"
|
|
||||||
export APP_URL="http://localhost:3210"
|
|
||||||
$STD pnpm install
|
|
||||||
$STD pnpm run build:docker
|
|
||||||
msg_ok "Built Application"
|
|
||||||
|
|
||||||
msg_info "Configuring Application"
|
|
||||||
KEY_VAULTS_SECRET=$(openssl rand -base64 32)
|
|
||||||
AUTH_SECRET=$(openssl rand -base64 32)
|
|
||||||
cat <<EOF >/opt/lobehub/.env
|
|
||||||
DATABASE_URL=postgres://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}
|
|
||||||
DATABASE_DRIVER=node
|
|
||||||
KEY_VAULTS_SECRET=${KEY_VAULTS_SECRET}
|
|
||||||
AUTH_SECRET=${AUTH_SECRET}
|
|
||||||
APP_URL=http://${LOCAL_IP}:3210
|
|
||||||
HOSTNAME=0.0.0.0
|
|
||||||
PORT=3210
|
|
||||||
NODE_ENV=production
|
|
||||||
EOF
|
|
||||||
msg_ok "Configured Application"
|
|
||||||
|
|
||||||
msg_info "Setting Up Standalone"
|
|
||||||
cp -r /opt/lobehub/.next/static /opt/lobehub/.next/standalone/.next/static
|
|
||||||
cp -r /opt/lobehub/public /opt/lobehub/.next/standalone/public
|
|
||||||
cp -r /opt/lobehub/scripts/migrateServerDB/* /opt/lobehub/.next/standalone/
|
|
||||||
cp -r /opt/lobehub/packages/database/migrations /opt/lobehub/.next/standalone/migrations
|
|
||||||
msg_ok "Set Up Standalone"
|
|
||||||
|
|
||||||
msg_info "Running Database Migrations"
|
|
||||||
cd /opt/lobehub/.next/standalone
|
|
||||||
set -a && source /opt/lobehub/.env && set +a
|
|
||||||
$STD node /opt/lobehub/.next/standalone/docker.cjs
|
|
||||||
msg_ok "Ran Database Migrations"
|
|
||||||
|
|
||||||
msg_info "Creating Service"
|
|
||||||
cat <<EOF >/etc/systemd/system/lobehub.service
|
|
||||||
[Unit]
|
|
||||||
Description=LobeHub
|
|
||||||
After=network.target postgresql.service
|
|
||||||
Requires=postgresql.service
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
User=root
|
|
||||||
WorkingDirectory=/opt/lobehub/.next/standalone
|
|
||||||
EnvironmentFile=/opt/lobehub/.env
|
|
||||||
ExecStart=/usr/bin/node /opt/lobehub/.next/standalone/server.js
|
|
||||||
Restart=on-failure
|
|
||||||
RestartSec=5
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
EOF
|
|
||||||
|
|
||||||
systemctl enable -q --now lobehub
|
|
||||||
msg_ok "Created Service"
|
|
||||||
|
|
||||||
motd_ssh
|
|
||||||
customize
|
|
||||||
cleanup_lxc
|
|
||||||
@@ -34,17 +34,11 @@ export NODE_ENV="production"
|
|||||||
export CI="true"
|
export CI="true"
|
||||||
$STD pnpm install --frozen-lockfile
|
$STD pnpm install --frozen-lockfile
|
||||||
$STD pnpm run build
|
$STD pnpm run build
|
||||||
msg_info "Deploying Nitro Runtime Externals"
|
|
||||||
$STD pnpm --filter=@reactive-resume/runtime-externals deploy --prod --legacy /tmp/rr-runtime
|
|
||||||
cp -r /tmp/rr-runtime/node_modules/. /opt/reactive-resume/apps/web/node_modules/
|
|
||||||
rm -rf /tmp/rr-runtime
|
|
||||||
msg_ok "Deployed Nitro Runtime Externals"
|
|
||||||
mkdir -p /opt/reactive-resume/data
|
mkdir -p /opt/reactive-resume/data
|
||||||
msg_ok "Built Reactive Resume"
|
msg_ok "Built Reactive Resume"
|
||||||
|
|
||||||
msg_info "Configuring Reactive Resume"
|
msg_info "Configuring Reactive Resume"
|
||||||
AUTH_SECRET=$(openssl rand -hex 32)
|
AUTH_SECRET=$(openssl rand -hex 32)
|
||||||
ENCRYPTION_SECRET=$(openssl rand -hex 32)
|
|
||||||
|
|
||||||
cat <<EOF >/opt/reactive-resume/.env
|
cat <<EOF >/opt/reactive-resume/.env
|
||||||
# Reactive Resume v5 Configuration
|
# Reactive Resume v5 Configuration
|
||||||
@@ -60,8 +54,8 @@ DATABASE_URL=postgresql://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAM
|
|||||||
# Authentication Secret (do not change after initial setup)
|
# Authentication Secret (do not change after initial setup)
|
||||||
AUTH_SECRET=${AUTH_SECRET}
|
AUTH_SECRET=${AUTH_SECRET}
|
||||||
|
|
||||||
# Encryption Secret (required for saved AI providers, do not change after initial setup)
|
# Printer (headless Chromium for PDF generation)
|
||||||
ENCRYPTION_SECRET=${ENCRYPTION_SECRET}
|
PRINTER_ENDPOINT=http://127.0.0.1:9222
|
||||||
|
|
||||||
# Storage: uses local filesystem (/opt/reactive-resume/data) when S3 is not configured
|
# Storage: uses local filesystem (/opt/reactive-resume/data) when S3 is not configured
|
||||||
# S3_ACCESS_KEY_ID=
|
# S3_ACCESS_KEY_ID=
|
||||||
@@ -84,9 +78,6 @@ ENCRYPTION_SECRET=${ENCRYPTION_SECRET}
|
|||||||
# GOOGLE_CLIENT_ID=
|
# GOOGLE_CLIENT_ID=
|
||||||
# GOOGLE_CLIENT_SECRET=
|
# GOOGLE_CLIENT_SECRET=
|
||||||
|
|
||||||
# AI Agent (optional, required for the Agent workspace feature)
|
|
||||||
# REDIS_URL=redis://localhost:6379
|
|
||||||
|
|
||||||
# Feature Flags
|
# Feature Flags
|
||||||
# FLAG_DISABLE_SIGNUPS=false
|
# FLAG_DISABLE_SIGNUPS=false
|
||||||
# FLAG_DISABLE_EMAIL_AUTH=false
|
# FLAG_DISABLE_EMAIL_AUTH=false
|
||||||
@@ -116,7 +107,7 @@ After=network.target postgresql.service chromium-printer.service
|
|||||||
Wants=postgresql.service chromium-printer.service
|
Wants=postgresql.service chromium-printer.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
WorkingDirectory=/opt/reactive-resume/apps/web
|
WorkingDirectory=/opt/reactive-resume
|
||||||
EnvironmentFile=/opt/reactive-resume/.env
|
EnvironmentFile=/opt/reactive-resume/.env
|
||||||
ExecStart=/usr/bin/node .output/server/index.mjs
|
ExecStart=/usr/bin/node .output/server/index.mjs
|
||||||
Restart=always
|
Restart=always
|
||||||
|
|||||||
@@ -84,9 +84,6 @@ msg_info "Configuring Nginx"
|
|||||||
sed \
|
sed \
|
||||||
-e 's|${SPARKY_FITNESS_SERVER_HOST}|127.0.0.1|g' \
|
-e 's|${SPARKY_FITNESS_SERVER_HOST}|127.0.0.1|g' \
|
||||||
-e 's|${SPARKY_FITNESS_SERVER_PORT}|3010|g' \
|
-e 's|${SPARKY_FITNESS_SERVER_PORT}|3010|g' \
|
||||||
-e 's|${NGINX_LISTEN_PORT}|80|g' \
|
|
||||||
-e 's|${NGINX_ACCESS_LOG}|/var/log/nginx/sparkyfitness.access.log|g' \
|
|
||||||
-e 's|${NGINX_ERROR_LOG}|/var/log/nginx/sparkyfitness.error.log|g' \
|
|
||||||
-e 's|root /usr/share/nginx/html;|root /var/www/sparkyfitness;|g' \
|
-e 's|root /usr/share/nginx/html;|root /var/www/sparkyfitness;|g' \
|
||||||
-e 's|server_name localhost;|server_name _;|g' \
|
-e 's|server_name localhost;|server_name _;|g' \
|
||||||
"/opt/sparkyfitness/docker/nginx.conf" >/etc/nginx/sites-available/sparkyfitness
|
"/opt/sparkyfitness/docker/nginx.conf" >/etc/nginx/sites-available/sparkyfitness
|
||||||
|
|||||||
@@ -24,7 +24,8 @@ cd /opt/wanderer/source/db
|
|||||||
$STD go mod tidy
|
$STD go mod tidy
|
||||||
$STD go build
|
$STD go build
|
||||||
cd /opt/wanderer/source/web
|
cd /opt/wanderer/source/web
|
||||||
$STD npm ci
|
$STD npm ci -s vitest
|
||||||
|
$STD npm ci --omit=dev
|
||||||
$STD npm run build
|
$STD npm run build
|
||||||
msg_ok "Installed wanderer"
|
msg_ok "Installed wanderer"
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ msg_info "Installing Dependencies"
|
|||||||
$STD apt install -y sqlite3
|
$STD apt install -y sqlite3
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "Whisparr" "Whisparr/Whisparr" "prebuild" "latest" "/opt/Whisparr" "Whisparr.*.linux-x64.tar.gz"
|
fetch_and_deploy_from_url "https://whisparr.servarr.com/v1/update/nightly/updatefile?os=linux&runtime=netcore&arch=x64" /opt/Whisparr
|
||||||
|
|
||||||
msg_info "Configuring Whisparr"
|
msg_info "Configuring Whisparr"
|
||||||
mkdir -p /var/lib/whisparr/
|
mkdir -p /var/lib/whisparr/
|
||||||
|
|||||||
Reference in New Issue
Block a user