Compare commits

..
Author SHA1 Message Date
GitHub Actions 835dd619a2 Update .app files 2026-09-19 20:16:58 +00:00
push-app-to-main[bot]andCanbiZ 08edec6e2e qBit-Manage (#17377)
* Add qbit-manage (ct)

* Change default value of var_arm64 to 'yes'

---------

Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com>
Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com>
2026-09-19 22:16:38 +02:00
7 changed files with 131 additions and 177 deletions
+6
View File
@@ -0,0 +1,6 @@
____ _ __ __ ___
____ _/ __ )(_) /_ / |/ /___ _____ ____ _____ ____
/ __ `/ __ / / __/_____/ /|_/ / __ `/ __ \/ __ `/ __ `/ _ \
/ /_/ / /_/ / / /_/_____/ / / / /_/ / / / / /_/ / /_/ / __/
\__, /_____/_/\__/ /_/ /_/\__,_/_/ /_/\__,_/\__, /\___/
/_/ /____/
-6
View File
@@ -1,6 +0,0 @@
__ __ _____ __ _ ____
\ \/ /___ __ _______ / ___/____ ____ / /_(_) __/_ __
\ / __ \/ / / / ___/_____\__ \/ __ \/ __ \/ __/ / /_/ / / /
/ / /_/ / /_/ / / /_____/__/ / /_/ / /_/ / /_/ / __/ /_/ /
/_/\____/\__,_/_/ /____/ .___/\____/\__/_/_/ \__, /
/_/ /____/
+58
View File
@@ -0,0 +1,58 @@
#!/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/StuffAnThings/qbit_manage
APP="qBit-Manage"
var_tags="${var_tags:-arr;torrent}"
var_cpu="${var_cpu:-1}"
var_ram="${var_ram:-1024}"
var_disk="${var_disk:-4}"
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/qbit-manage ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
if check_for_gh_release "qbit-manage" "StuffAnThings/qbit_manage"; then
msg_info "Stopping Service"
systemctl stop qbit-manage
msg_ok "Stopped Service"
fetch_and_deploy_gh_release "qbit-manage" "StuffAnThings/qbit_manage" "singlefile" "latest" "/opt/qbit-manage" "qbit-manage-linux-$(arch_resolve amd64 arm64)"
msg_info "Starting Service"
systemctl start qbit-manage
msg_ok "Started Service"
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}:8181${CL}"
echo -e "${INFO}${YW}Point it at your qBittorrent in /opt/qbit-manage_data/config.yml${CL}"
-77
View File
@@ -1,77 +0,0 @@
#!/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"
fi
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!"
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}"
+55
View File
@@ -0,0 +1,55 @@
#!/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/StuffAnThings/qbit_manage
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
fetch_and_deploy_gh_release "qbit-manage" "StuffAnThings/qbit_manage" "singlefile" "latest" "/opt/qbit-manage" "qbit-manage-linux-$(arch_resolve amd64 arm64)"
msg_info "Configuring qBit Manage"
mkdir -p /opt/qbit-manage_data
curl -fsSL "https://raw.githubusercontent.com/StuffAnThings/qbit_manage/master/config/config.yml.sample" -o /opt/qbit-manage_data/config.yml
cat <<EOF >/opt/qbit-manage.env
QBT_CONFIG_DIR=/opt/qbit-manage_data
QBT_WEB_SERVER=true
QBT_HOST=0.0.0.0
QBT_PORT=8181
QBT_SCHEDULE=1440
EOF
chmod 600 /opt/qbit-manage.env
msg_ok "Configured qBit Manage"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/qbit-manage.service
[Unit]
Description=qBit Manage
Wants=network-online.target
After=network-online.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/qbit-manage_data
EnvironmentFile=/opt/qbit-manage.env
ExecStart=/opt/qbit-manage/qbit-manage
Restart=on-failure
RestartSec=10
[Install]
WantedBy=multi-user.target
EOF
systemctl enable -q --now qbit-manage
msg_ok "Created Service"
motd_ssh
customize
cleanup_lxc
-94
View File
@@ -1,94 +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/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
+12
View File
@@ -0,0 +1,12 @@
____ __ _
/ __ \___ / /_ (_)___ _____
/ / / / _ \/ __ \/ / __ `/ __ \
/ /_/ / __/ /_/ / / /_/ / / / /
/_____/\___/_.___/_/\__,_/_/ /_/
____ __ _ __ __ _ _
/ __ \___ / /_ (_)___ _____ _/ / _/_/ ______ _______ _____ __________(_)___ ____ | |
/ / / / _ \/ __ \/ / __ `/ __ \ / __//_/| | / / __ `/ ___/ | / / _ \/ ___/ ___/ / __ \/ __ \ / /
/ /_/ / __/ /_/ / / /_/ / / / / (_ < < | |/ / /_/ / / | |/ / __/ / (__ ) / /_/ / / / /_>_>
/_____/\___/_.___/_/\__,_/_/ /_/ / _// / |___/\__,_/_/____|___/\___/_/ /____/_/\____/_/ /_//_/
/_/ \_\ /_____/ /_/