From 9eee1a7f95611d548b0d4bf938bde8973906d73e Mon Sep 17 00:00:00 2001 From: "push-app-to-main[bot]" <203845782+push-app-to-main[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 22:47:49 +0200 Subject: [PATCH] SoulSync (#14124) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add soulsync (ct) * Update pip install command to use requirements.txt * Update soulsync.sh --------- Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com> Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- ct/headers/soulsync | 6 ++++ ct/soulsync.sh | 68 +++++++++++++++++++++++++++++++++++++ install/soulsync-install.sh | 59 ++++++++++++++++++++++++++++++++ 3 files changed, 133 insertions(+) create mode 100644 ct/headers/soulsync create mode 100644 ct/soulsync.sh create mode 100644 install/soulsync-install.sh diff --git a/ct/headers/soulsync b/ct/headers/soulsync new file mode 100644 index 000000000..7f53caf51 --- /dev/null +++ b/ct/headers/soulsync @@ -0,0 +1,6 @@ + _____ _______ + / ___/____ __ __/ / ___/__ ______ _____ + \__ \/ __ \/ / / / /\__ \/ / / / __ \/ ___/ + ___/ / /_/ / /_/ / /___/ / /_/ / / / / /__ +/____/\____/\__,_/_//____/\__, /_/ /_/\___/ + /____/ diff --git a/ct/soulsync.sh b/ct/soulsync.sh new file mode 100644 index 000000000..d714a5e4b --- /dev/null +++ b/ct/soulsync.sh @@ -0,0 +1,68 @@ +#!/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/Nezreka/SoulSync + +APP="SoulSync" +var_tags="${var_tags:-music;automation;media}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-2048}" +var_disk="${var_disk:-8}" +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 [[ ! -f ~/.soulsync ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + if check_for_gh_release "soulsync" "Nezreka/SoulSync"; then + msg_info "Stopping Service" + systemctl stop soulsync + msg_ok "Stopped Service" + + msg_info "Backing up Data" + mv /opt/soulsync/config /opt/soulsync-config.bak + mv /opt/soulsync/data /opt/soulsync-data.bak + msg_ok "Backed up Data" + + CLEAN_INSTALL=1 fetch_and_deploy_gh_release "soulsync" "Nezreka/SoulSync" "tarball" + + msg_info "Updating Python Dependencies" + cd /opt/soulsync + $STD uv venv --clear /opt/soulsync/.venv --python 3.11 + $STD /opt/soulsync/.venv/bin/pip install -r requirements.txt + msg_ok "Updated Python Dependencies" + + mv /opt/soulsync-config.bak /opt/soulsync/config + mv /opt/soulsync-data.bak /opt/soulsync/data + + msg_info "Starting Service" + systemctl start soulsync + msg_ok "Started Service" + msg_ok "Updated ${APP}" + 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}:8008${CL}" diff --git a/install/soulsync-install.sh b/install/soulsync-install.sh new file mode 100644 index 000000000..00bfaf171 --- /dev/null +++ b/install/soulsync-install.sh @@ -0,0 +1,59 @@ +#!/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/Nezreka/SoulSync + +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 \ + gcc \ + libffi-dev \ + libssl-dev \ + libchromaprint-tools \ + ffmpeg +msg_ok "Installed Dependencies" + +UV_PYTHON="3.11" setup_uv + +fetch_and_deploy_gh_release "soulsync" "Nezreka/SoulSync" "tarball" + +msg_info "Setting up Application" +cd /opt/soulsync +$STD uv venv /opt/soulsync/.venv --python 3.11 +$STD uv pip install -r requirements.txt --python /opt/soulsync/.venv/bin/python +mkdir -p /opt/soulsync/{config,data,logs} +msg_ok "Set up Application" + +msg_info "Creating Service" +cat </etc/systemd/system/soulsync.service +[Unit] +Description=SoulSync Music Discovery +After=network.target + +[Service] +Type=simple +User=root +WorkingDirectory=/opt/soulsync +ExecStart=/opt/soulsync/.venv/bin/python web_server.py +Environment=PYTHONPATH=/opt/soulsync PYTHONUNBUFFERED=1 DATABASE_PATH=/opt/soulsync/data/music_library.db +Restart=on-failure +RestartSec=5 + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q --now soulsync +msg_ok "Created Service" + +motd_ssh +customize +cleanup_lxc