mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-21 09:50:25 +00:00
Compare commits
6
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a949dd9233 | ||
|
|
84ccfe044b | ||
|
|
2178243eb0 | ||
|
|
6f035b79fb | ||
|
|
73cab4e4c7 | ||
|
|
87201772c7 |
@@ -546,8 +546,24 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
## 2026-09-21
|
||||||
|
|
||||||
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- xyops: bump Node.js from 22 to 24 [@github-actions[bot]](https://github.com/github-actions[bot]) ([#17398](https://github.com/community-scripts/ProxmoxVE/pull/17398))
|
||||||
|
|
||||||
|
### 💾 Core
|
||||||
|
|
||||||
|
- Ask when the preselected storage cannot hold the content [@MickLesk](https://github.com/MickLesk) ([core#51](https://github.com/community-scripts/core/pull/51))
|
||||||
|
|
||||||
## 2026-09-20
|
## 2026-09-20
|
||||||
|
|
||||||
|
### 🆕 New Scripts
|
||||||
|
|
||||||
|
- Your-Spotify ([#17376](https://github.com/community-scripts/ProxmoxVE/pull/17376))
|
||||||
|
|
||||||
## 2026-09-19
|
## 2026-09-19
|
||||||
|
|
||||||
### 🆕 New Scripts
|
### 🆕 New Scripts
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
__ __ _____ __ _ ____
|
||||||
|
\ \/ /___ __ _______ / ___/____ ____ / /_(_) __/_ __
|
||||||
|
\ / __ \/ / / / ___/_____\__ \/ __ \/ __ \/ __/ / /_/ / / /
|
||||||
|
/ / /_/ / /_/ / / /_____/__/ / /_/ / /_/ / /_/ / __/ /_/ /
|
||||||
|
/_/\____/\__,_/_/ /____/ .___/\____/\__/_/_/ \__, /
|
||||||
|
/_/ /____/
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main"
|
||||||
|
_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func"
|
||||||
|
source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/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/Yooooomi/your_spotify
|
||||||
|
|
||||||
|
APP="Your-Spotify"
|
||||||
|
var_tags="${var_tags:-music;analytics}"
|
||||||
|
var_cpu="${var_cpu:-2}"
|
||||||
|
var_ram="${var_ram:-3072}"
|
||||||
|
var_disk="${var_disk:-10}"
|
||||||
|
var_os="${var_os:-debian}"
|
||||||
|
var_version="${var_version:-13}"
|
||||||
|
var_arm64="${var_arm64:-yes}"
|
||||||
|
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/your-spotify ]]; then
|
||||||
|
msg_error "No ${APP} Installation Found!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
if check_for_gh_release "your-spotify" "Yooooomi/your_spotify"; then
|
||||||
|
msg_info "Stopping Services"
|
||||||
|
systemctl stop your-spotify your-spotify-web
|
||||||
|
msg_ok "Stopped Services"
|
||||||
|
|
||||||
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "your-spotify" "Yooooomi/your_spotify" "tarball"
|
||||||
|
|
||||||
|
msg_info "Building Your Spotify"
|
||||||
|
cd /opt/your-spotify
|
||||||
|
$STD pnpm install --frozen-lockfile
|
||||||
|
$STD pnpm --filter @your_spotify/server build
|
||||||
|
$STD pnpm --filter @your_spotify/client build
|
||||||
|
msg_ok "Built Your Spotify"
|
||||||
|
|
||||||
|
msg_info "Applying Client Configuration"
|
||||||
|
API_ENDPOINT=$(grep '^API_ENDPOINT=' /opt/your-spotify.env | cut -d= -f2-)
|
||||||
|
cp /opt/your-spotify/apps/client/build/variables-template.js /opt/your-spotify/apps/client/build/variables.js
|
||||||
|
sed -i "s;__API_ENDPOINT__;${API_ENDPOINT};g" /opt/your-spotify/apps/client/build/variables.js
|
||||||
|
sed -i "s#connect-src \(.*\);#connect-src 'self' ${API_ENDPOINT}/;#g" /opt/your-spotify/apps/client/build/index.html
|
||||||
|
msg_ok "Applied Client Configuration"
|
||||||
|
|
||||||
|
msg_info "Restarting Services"
|
||||||
|
systemctl restart your-spotify your-spotify-web
|
||||||
|
msg_ok "Restarted 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 "${GATEWAY}${BGN}http://${IP}:3000${CL}"
|
||||||
|
echo -e "${INFO}${YW}Add your Spotify app keys to /opt/your-spotify.env first${CL}"
|
||||||
|
echo -e "${INFO}${YW}Spotify rejects plain http redirect URIs on a LAN address.${CL}"
|
||||||
|
echo -e "${INFO}${YW}Put this behind a TLS reverse proxy and register:${CL}"
|
||||||
|
echo -e "${TAB}${DEFAULT}${BGN}https://your.domain/oauth/spotify/callback${CL}"
|
||||||
|
echo -e "${INFO}${YW}Then set API_ENDPOINT to that https URL and rerun the update.${CL}"
|
||||||
@@ -23,7 +23,7 @@ $STD apt install -y \
|
|||||||
zlib1g-dev
|
zlib1g-dev
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
NODE_VERSION="22" setup_nodejs
|
NODE_VERSION="24" setup_nodejs
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "xyops" "pixlcore/xyops" "tarball"
|
fetch_and_deploy_gh_release "xyops" "pixlcore/xyops" "tarball"
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,94 @@
|
|||||||
|
#!/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/Yooooomi/your_spotify
|
||||||
|
|
||||||
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||||
|
color
|
||||||
|
verb_ip6
|
||||||
|
catch_errors
|
||||||
|
setting_up_container
|
||||||
|
network_check
|
||||||
|
update_os
|
||||||
|
|
||||||
|
setup_mongodb
|
||||||
|
NODE_VERSION="22" NODE_MODULE="pnpm@^10,serve" setup_nodejs
|
||||||
|
|
||||||
|
fetch_and_deploy_gh_release "your-spotify" "Yooooomi/your_spotify" "tarball"
|
||||||
|
|
||||||
|
msg_info "Building Your Spotify"
|
||||||
|
cd /opt/your-spotify
|
||||||
|
$STD pnpm install --frozen-lockfile
|
||||||
|
$STD pnpm --filter @your_spotify/server build
|
||||||
|
$STD pnpm --filter @your_spotify/client build
|
||||||
|
msg_ok "Built Your Spotify"
|
||||||
|
|
||||||
|
var_api_endpoint="${var_api_endpoint:-http://${LOCAL_IP}:8080}"
|
||||||
|
var_client_endpoint="${var_client_endpoint:-http://${LOCAL_IP}:3000}"
|
||||||
|
var_spotify_public="${var_spotify_public:-CHANGE_ME}"
|
||||||
|
var_spotify_secret="${var_spotify_secret:-CHANGE_ME}"
|
||||||
|
|
||||||
|
msg_info "Configuring Your Spotify"
|
||||||
|
cat <<EOF >/opt/your-spotify.env
|
||||||
|
API_ENDPOINT=${var_api_endpoint}
|
||||||
|
CLIENT_ENDPOINT=${var_client_endpoint}
|
||||||
|
SPOTIFY_PUBLIC=${var_spotify_public}
|
||||||
|
SPOTIFY_SECRET=${var_spotify_secret}
|
||||||
|
MONGO_ENDPOINT=mongodb://127.0.0.1:27017/your_spotify
|
||||||
|
TIMEZONE=UTC
|
||||||
|
LOG_LEVEL=info
|
||||||
|
PORT=8080
|
||||||
|
EOF
|
||||||
|
chmod 600 /opt/your-spotify.env
|
||||||
|
|
||||||
|
cp /opt/your-spotify/apps/client/build/variables-template.js /opt/your-spotify/apps/client/build/variables.js
|
||||||
|
sed -i "s;__API_ENDPOINT__;${var_api_endpoint};g" /opt/your-spotify/apps/client/build/variables.js
|
||||||
|
sed -i "s#connect-src \(.*\);#connect-src 'self' ${var_api_endpoint}/;#g" /opt/your-spotify/apps/client/build/index.html
|
||||||
|
msg_ok "Configured Your Spotify"
|
||||||
|
|
||||||
|
msg_info "Creating Services"
|
||||||
|
cat <<EOF >/etc/systemd/system/your-spotify.service
|
||||||
|
[Unit]
|
||||||
|
Description=Your Spotify Server
|
||||||
|
Wants=network-online.target
|
||||||
|
After=network-online.target mongod.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
User=root
|
||||||
|
WorkingDirectory=/opt/your-spotify/apps/server
|
||||||
|
EnvironmentFile=/opt/your-spotify.env
|
||||||
|
ExecStartPre=/usr/bin/node build/index.js --migrate
|
||||||
|
ExecStart=/usr/bin/node build/index.js
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=5
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat <<EOF >/etc/systemd/system/your-spotify-web.service
|
||||||
|
[Unit]
|
||||||
|
Description=Your Spotify Web
|
||||||
|
Wants=network-online.target
|
||||||
|
After=network-online.target your-spotify.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
User=root
|
||||||
|
WorkingDirectory=/opt/your-spotify/apps/client
|
||||||
|
ExecStart=serve -s -l tcp://0.0.0.0:3000 /opt/your-spotify/apps/client/build
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=5
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
EOF
|
||||||
|
systemctl enable -q --now your-spotify your-spotify-web
|
||||||
|
msg_ok "Created Services"
|
||||||
|
|
||||||
|
motd_ssh
|
||||||
|
customize
|
||||||
|
cleanup_lxc
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
____ __ _
|
||||||
|
/ __ \___ / /_ (_)___ _____
|
||||||
|
/ / / / _ \/ __ \/ / __ `/ __ \
|
||||||
|
/ /_/ / __/ /_/ / / /_/ / / / /
|
||||||
|
/_____/\___/_.___/_/\__,_/_/ /_/
|
||||||
|
|
||||||
|
____ __ _ __ __ _ _
|
||||||
|
/ __ \___ / /_ (_)___ _____ _/ / _/_/ ______ _______ _____ __________(_)___ ____ | |
|
||||||
|
/ / / / _ \/ __ \/ / __ `/ __ \ / __//_/| | / / __ `/ ___/ | / / _ \/ ___/ ___/ / __ \/ __ \ / /
|
||||||
|
/ /_/ / __/ /_/ / / /_/ / / / / (_ < < | |/ / /_/ / / | |/ / __/ / (__ ) / /_/ / / / /_>_>
|
||||||
|
/_____/\___/_.___/_/\__,_/_/ /_/ / _// / |___/\__,_/_/____|___/\___/_/ /____/_/\____/_/ /_//_/
|
||||||
|
/_/ \_\ /_____/ /_/
|
||||||
Reference in New Issue
Block a user