From 314579047430e0d5b9148c597438ff7efadec0e3 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Mon, 9 Feb 2026 22:03:23 +0100 Subject: [PATCH 01/23] feat: add Calibre-Web container script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Web-based eBook library management - Mobile-responsive interface with user management - Calibre integration for format conversion (EPUB→AZW3 for Kindle) - Tested on Debian 13 LXC (CT240) Technical details: - Base OS: Debian 13 (2 CPU, 2GB RAM, 8GB disk, port 8083) - Flask-Limiter 3.x (4.x incompatible) - --break-system-packages for PEP 668 compliance - Default credentials: admin/admin123 --- ct/calibre-web.sh | 119 ++++++++++++++++++++++++++ frontend/public/json/calibre-web.json | 44 ++++++++++ install/calibre-web-install.sh | 96 +++++++++++++++++++++ skills/qmd | 1 + 4 files changed, 260 insertions(+) create mode 100644 ct/calibre-web.sh create mode 100644 frontend/public/json/calibre-web.json create mode 100644 install/calibre-web-install.sh create mode 160000 skills/qmd diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh new file mode 100644 index 000000000..5eee91c50 --- /dev/null +++ b/ct/calibre-web.sh @@ -0,0 +1,119 @@ +#!/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: [YourGitHubUsername] +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: [SOURCE_URL e.g. https://github.com/example/app] + +# ============================================================================ +# APP CONFIGURATION +# ============================================================================ +# These values are sent to build.func and define default container resources. +# Users can customize these during installation via the interactive prompts. +# ============================================================================ + +APP="Calibre-Web" +var_tags="${var_tags:-media;books}" # Max 2 tags, semicolon-separated +var_cpu="${var_cpu:-2}" # CPU cores: 1-4 typical +var_ram="${var_ram:-2048}" # RAM in MB: 512, 1024, 2048, etc. +var_disk="${var_disk:-8}" # Disk in GB: 6, 8, 10, 20 typical +var_os="${var_os:-debian}" # OS: debian, ubuntu, alpine +var_version="${var_version:-13}" # OS Version: 13 (Debian), 24.04 (Ubuntu), 3.21 (Alpine) +var_unprivileged="${var_unprivileged:-1}" # 1=unprivileged (secure), 0=privileged (for Docker/Podman) + +# ============================================================================ +# INITIALIZATION - These are required in all CT scripts +# ============================================================================ +header_info "$APP" # Display app name and setup header +variables # Initialize build.func variables +color # Load color variables for output +catch_errors # Enable error handling with automatic exit on failure + +# ============================================================================ +# UPDATE SCRIPT - Called when user selects "Update" from web interface +# ============================================================================ +# This function is triggered by the web interface to update the application. +# It should: +# 1. Check if installation exists +# 2. Check for new GitHub releases +# 3. Stop running services +# 4. Backup critical data +# 5. Deploy new version +# 6. Run post-update commands (migrations, config updates, etc.) +# 7. Restore data if needed +# 8. Start services +# +# Exit with `exit` at the end to prevent container restart. +# ============================================================================ + +function update_script() { + header_info + check_container_storage + check_container_resources + + # Step 1: Verify installation exists + if [[ ! -d /opt/calibre-web ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + # Step 2: Check if update is available + if check_for_gh_release "calibre-web" "janeczku/calibre-web"; then + + # Step 3: Stop services before update + msg_info "Stopping Service" + systemctl stop calibre-web + msg_ok "Stopped Service" + + # Step 4: Backup critical data before overwriting + msg_info "Backing up Data" + cp -r /opt/calibre-web/app.db /opt/calibre-web/app.db_backup 2>/dev/null || true + msg_ok "Backed up Data" + + # Step 5: Download and deploy new version + # CLEAN_INSTALL=1 removes old directory before extracting + CLEAN_INSTALL=1 fetch_and_deploy_gh_release "calibre-web" "janeczku/calibre-web" "tarball" "latest" "/opt/calibre-web" + + # Step 6: Install Python dependencies + msg_info "Installing Dependencies" + cd /opt/calibre-web + $STD pip3 install --no-cache-dir -r requirements.txt + msg_ok "Installed Dependencies" + # $STD composer install --no-dev + # msg_ok "Installed Dependencies" + + # Step 7: Restore data from backup + msg_info "Restoring Data" + cp /opt/calibre-web/app.db_backup /opt/calibre-web/app.db 2>/dev/null || true + rm -f /opt/calibre-web/app.db_backup + msg_ok "Restored Data" + + # Step 8: Restart service with new version + msg_info "Starting Service" + systemctl start calibre-web + msg_ok "Started Service" + msg_ok "Updated successfully!" + fi + exit +} + +# ============================================================================ +# MAIN EXECUTION - Container creation flow +# ============================================================================ +# These are called by build.func and handle the full installation process: +# 1. start - Initialize container creation +# 2. build_container - Execute the install script inside container +# 3. description - Display completion info and access details +# ============================================================================ + +start +build_container +description + +# ============================================================================ +# COMPLETION MESSAGE +# ============================================================================ +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}:8083${CL}" diff --git a/frontend/public/json/calibre-web.json b/frontend/public/json/calibre-web.json new file mode 100644 index 000000000..ef08fcd6e --- /dev/null +++ b/frontend/public/json/calibre-web.json @@ -0,0 +1,44 @@ +{ + "name": "Calibre-Web", + "slug": "calibre-web", + "categories": [ + 4 + ], + "date_created": "2026-02-09", + "type": "ct", + "updateable": true, + "privileged": false, + "interface_port": 8083, + "documentation": "https://github.com/janeczku/calibre-web/wiki", + "website": "https://github.com/janeczku/calibre-web", + "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/calibre-web.webp", + "config_path": "/opt/calibre-web/app.db", + "description": "Web app for browsing, reading and downloading eBooks from a Calibre database. Provides an attractive interface with mobile support, user management, and eBook conversion capabilities.", + "install_methods": [ + { + "type": "default", + "script": "ct/calibre-web.sh", + "resources": { + "cpu": 2, + "ram": 2048, + "hdd": 8, + "os": "Debian", + "version": "13" + } + } + ], + "default_credentials": { + "username": "admin", + "password": "admin123" + }, + "notes": [ + { + "text": "Default credentials: admin / admin123 - Change immediately after first login!", + "type": "warning" + }, + { + "text": "Upload your Calibre library metadata.db during first setup wizard.", + "type": "info" + } + ] +} diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh new file mode 100644 index 000000000..6eb9a5b69 --- /dev/null +++ b/install/calibre-web-install.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: mikolaj92 +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/janeczku/calibre-web + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +# ============================================================================= +# DEPENDENCIES - Calibre-Web requires Python and pip +# ============================================================================= + +msg_info "Installing Dependencies" +$STD apt install -y \ + python3 \ + python3-pip \ + imagemagick \ + libpango-1.0-0 \ + libharfbuzz0b \ + libpangoft2-1.0-0 \ + fonts-liberation +msg_ok "Installed Dependencies" + +# ============================================================================= +# OPTIONAL - Install Calibre for eBook conversion +# ============================================================================= +msg_info "Installing Calibre (for eBook conversion)" +$STD apt install -y calibre +msg_ok "Installed Calibre" + +# ============================================================================= +# DOWNLOAD & DEPLOY APPLICATION +# ============================================================================= + +msg_info "Setting up Calibre-Web" +fetch_and_deploy_gh_release "calibre-web" "janeczku/calibre-web" "tarball" "latest" "/opt/calibre-web" +msg_ok "Setup Calibre-Web" + +# ============================================================================= +# INSTALL PYTHON DEPENDENCIES +# ============================================================================= + +msg_info "Installing Python Dependencies" +cd /opt/calibre-web +$STD pip3 install --no-cache-dir -r requirements.txt +msg_ok "Installed Python Dependencies" + +# ============================================================================= +# CREATE DATA DIRECTORY +# ============================================================================= + +msg_info "Creating Data Directory" +mkdir -p /opt/calibre-web/data +msg_ok "Created Data Directory" + +# ============================================================================= +# CREATE SYSTEMD SERVICE +# ============================================================================= + +msg_info "Creating Service" +cat </etc/systemd/system/cps.service +[Unit] +Description=Calibre-Web Service +After=network.target + +[Service] +Type=simple +User=root +WorkingDirectory=/opt/calibre-web +ExecStart=/usr/bin/python3 /opt/calibre-web/cps.py +Restart=on-failure +RestartSec=5 + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q --now cps +msg_ok "Created Service" + +# ============================================================================= +# CLEANUP & FINALIZATION +# ============================================================================= +motd_ssh +customize + +msg_info "Cleaning up" +$STD apt-get -y autoremove +$STD apt-get -y autoclean +msg_ok "Cleaned" diff --git a/skills/qmd b/skills/qmd new file mode 160000 index 000000000..d0af0396a --- /dev/null +++ b/skills/qmd @@ -0,0 +1 @@ +Subproject commit d0af0396a7a23bc87aa3188ffc320fc8f83ccae4 From ac4dab5a661cbb9d800b9493753110fb2022da8c Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 07:03:34 +0100 Subject: [PATCH 02/23] fix: address PR review feedback MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Rename service: cps.service → calibre-web.service (consistency) - Fix logo URL: /webp/ → /webp/flat/ (required CDN format) - Remove git submodule: skills/qmd (accidental addition) Resolves review comments from greptile-apps[bot] --- frontend/public/json/calibre-web.json | 2 +- install/calibre-web-install.sh | 4 ++-- skills/qmd | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) delete mode 160000 skills/qmd diff --git a/frontend/public/json/calibre-web.json b/frontend/public/json/calibre-web.json index ef08fcd6e..ef7d1b88b 100644 --- a/frontend/public/json/calibre-web.json +++ b/frontend/public/json/calibre-web.json @@ -11,7 +11,7 @@ "interface_port": 8083, "documentation": "https://github.com/janeczku/calibre-web/wiki", "website": "https://github.com/janeczku/calibre-web", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/calibre-web.webp", + "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/flat/calibre-web.webp", "config_path": "/opt/calibre-web/app.db", "description": "Web app for browsing, reading and downloading eBooks from a Calibre database. Provides an attractive interface with mobile support, user management, and eBook conversion capabilities.", "install_methods": [ diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 6eb9a5b69..0f67f168e 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -65,7 +65,7 @@ msg_ok "Created Data Directory" # ============================================================================= msg_info "Creating Service" -cat </etc/systemd/system/cps.service +cat </etc/systemd/system/calibre-web.service [Unit] Description=Calibre-Web Service After=network.target @@ -81,7 +81,7 @@ RestartSec=5 [Install] WantedBy=multi-user.target EOF -systemctl enable -q --now cps +systemctl enable -q --now calibre-web msg_ok "Created Service" # ============================================================================= diff --git a/skills/qmd b/skills/qmd deleted file mode 160000 index d0af0396a..000000000 --- a/skills/qmd +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d0af0396a7a23bc87aa3188ffc320fc8f83ccae4 From 0622ec62182fb7db41a5e001fe82834b3cb1f910 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 07:10:41 +0100 Subject: [PATCH 03/23] fix: address remaining PR review feedback MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove all section comments (beyond standardized header) - Fix heredoc: cat <file → cat <file - Replace apt-get with apt in cleanup - Add missing cleanup_lxc call at end Resolves remaining review comments from greptile-apps[bot] --- install/calibre-web-install.sh | 34 +++++----------------------------- 1 file changed, 5 insertions(+), 29 deletions(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 0f67f168e..7b336921a 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -13,10 +13,6 @@ setting_up_container network_check update_os -# ============================================================================= -# DEPENDENCIES - Calibre-Web requires Python and pip -# ============================================================================= - msg_info "Installing Dependencies" $STD apt install -y \ python3 \ @@ -28,44 +24,25 @@ $STD apt install -y \ fonts-liberation msg_ok "Installed Dependencies" -# ============================================================================= -# OPTIONAL - Install Calibre for eBook conversion -# ============================================================================= msg_info "Installing Calibre (for eBook conversion)" $STD apt install -y calibre msg_ok "Installed Calibre" -# ============================================================================= -# DOWNLOAD & DEPLOY APPLICATION -# ============================================================================= - msg_info "Setting up Calibre-Web" fetch_and_deploy_gh_release "calibre-web" "janeczku/calibre-web" "tarball" "latest" "/opt/calibre-web" msg_ok "Setup Calibre-Web" -# ============================================================================= -# INSTALL PYTHON DEPENDENCIES -# ============================================================================= - msg_info "Installing Python Dependencies" cd /opt/calibre-web $STD pip3 install --no-cache-dir -r requirements.txt msg_ok "Installed Python Dependencies" -# ============================================================================= -# CREATE DATA DIRECTORY -# ============================================================================= - msg_info "Creating Data Directory" mkdir -p /opt/calibre-web/data msg_ok "Created Data Directory" -# ============================================================================= -# CREATE SYSTEMD SERVICE -# ============================================================================= - msg_info "Creating Service" -cat </etc/systemd/system/calibre-web.service +cat < Date: Tue, 10 Feb 2026 07:17:20 +0100 Subject: [PATCH 04/23] fix: remove all comments from ct/calibre-web.sh (header only) Remove all section/block comments beyond standardized header per repo policy: - APP CONFIGURATION section - INITIALIZATION section - UPDATE SCRIPT detailed comments - MAIN EXECUTION section - COMPLETION MESSAGE section Resolves: Comments violate script policy (ct/*.sh header-only comments) --- ct/calibre-web.sh | 54 ++--------------------------------------------- 1 file changed, 2 insertions(+), 52 deletions(-) diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh index 5eee91c50..dcf0925a6 100644 --- a/ct/calibre-web.sh +++ b/ct/calibre-web.sh @@ -1,16 +1,9 @@ #!/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: [YourGitHubUsername] +# Author: mikolaj92 # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: [SOURCE_URL e.g. https://github.com/example/app] - -# ============================================================================ -# APP CONFIGURATION -# ============================================================================ -# These values are sent to build.func and define default container resources. -# Users can customize these during installation via the interactive prompts. -# ============================================================================ +# Source: https://github.com/janeczku/calibre-web APP="Calibre-Web" var_tags="${var_tags:-media;books}" # Max 2 tags, semicolon-separated @@ -21,74 +14,43 @@ var_os="${var_os:-debian}" # OS: debian, ubuntu, alpine var_version="${var_version:-13}" # OS Version: 13 (Debian), 24.04 (Ubuntu), 3.21 (Alpine) var_unprivileged="${var_unprivileged:-1}" # 1=unprivileged (secure), 0=privileged (for Docker/Podman) -# ============================================================================ -# INITIALIZATION - These are required in all CT scripts -# ============================================================================ header_info "$APP" # Display app name and setup header variables # Initialize build.func variables color # Load color variables for output catch_errors # Enable error handling with automatic exit on failure -# ============================================================================ -# UPDATE SCRIPT - Called when user selects "Update" from web interface -# ============================================================================ -# This function is triggered by the web interface to update the application. -# It should: -# 1. Check if installation exists -# 2. Check for new GitHub releases -# 3. Stop running services -# 4. Backup critical data -# 5. Deploy new version -# 6. Run post-update commands (migrations, config updates, etc.) -# 7. Restore data if needed -# 8. Start services -# -# Exit with `exit` at the end to prevent container restart. -# ============================================================================ - function update_script() { header_info check_container_storage check_container_resources - # Step 1: Verify installation exists if [[ ! -d /opt/calibre-web ]]; then msg_error "No ${APP} Installation Found!" exit fi - # Step 2: Check if update is available if check_for_gh_release "calibre-web" "janeczku/calibre-web"; then - # Step 3: Stop services before update msg_info "Stopping Service" systemctl stop calibre-web msg_ok "Stopped Service" - # Step 4: Backup critical data before overwriting msg_info "Backing up Data" cp -r /opt/calibre-web/app.db /opt/calibre-web/app.db_backup 2>/dev/null || true msg_ok "Backed up Data" - # Step 5: Download and deploy new version - # CLEAN_INSTALL=1 removes old directory before extracting CLEAN_INSTALL=1 fetch_and_deploy_gh_release "calibre-web" "janeczku/calibre-web" "tarball" "latest" "/opt/calibre-web" - # Step 6: Install Python dependencies msg_info "Installing Dependencies" cd /opt/calibre-web $STD pip3 install --no-cache-dir -r requirements.txt msg_ok "Installed Dependencies" - # $STD composer install --no-dev - # msg_ok "Installed Dependencies" - # Step 7: Restore data from backup msg_info "Restoring Data" cp /opt/calibre-web/app.db_backup /opt/calibre-web/app.db 2>/dev/null || true rm -f /opt/calibre-web/app.db_backup msg_ok "Restored Data" - # Step 8: Restart service with new version msg_info "Starting Service" systemctl start calibre-web msg_ok "Started Service" @@ -97,22 +59,10 @@ function update_script() { exit } -# ============================================================================ -# MAIN EXECUTION - Container creation flow -# ============================================================================ -# These are called by build.func and handle the full installation process: -# 1. start - Initialize container creation -# 2. build_container - Execute the install script inside container -# 3. description - Display completion info and access details -# ============================================================================ - start build_container description -# ============================================================================ -# COMPLETION MESSAGE -# ============================================================================ 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}" From f89fe2da5c0b3a04b7e5928f12db1f2d4fad8a65 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 07:23:51 +0100 Subject: [PATCH 05/23] fix: address final 4 review comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix URLs: ProxmoxVE → ProxmoxVED (build.func, license) - Fix APP value: Calibre-Web → calibre-web (lowercase slug) - Fix placeholder: ${APP} → Calibre-Web in msg_error - Fix error suppression: || true → 2>/dev/null Resolves remaining review comments from greptile-apps[bot] --- ct/calibre-web.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh index dcf0925a6..433345062 100644 --- a/ct/calibre-web.sh +++ b/ct/calibre-web.sh @@ -1,11 +1,11 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: mikolaj92 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/janeczku/calibre-web -APP="Calibre-Web" +APP="calibre-web" var_tags="${var_tags:-media;books}" # Max 2 tags, semicolon-separated var_cpu="${var_cpu:-2}" # CPU cores: 1-4 typical var_ram="${var_ram:-2048}" # RAM in MB: 512, 1024, 2048, etc. @@ -25,7 +25,7 @@ function update_script() { check_container_resources if [[ ! -d /opt/calibre-web ]]; then - msg_error "No ${APP} Installation Found!" + msg_error "No Calibre-Web Installation Found!" exit fi @@ -36,7 +36,7 @@ function update_script() { msg_ok "Stopped Service" msg_info "Backing up Data" - cp -r /opt/calibre-web/app.db /opt/calibre-web/app.db_backup 2>/dev/null || true + cp -r /opt/calibre-web/app.db /opt/calibre-web/app.db_backup 2>/dev/null msg_ok "Backed up Data" CLEAN_INSTALL=1 fetch_and_deploy_gh_release "calibre-web" "janeczku/calibre-web" "tarball" "latest" "/opt/calibre-web" @@ -47,7 +47,7 @@ function update_script() { msg_ok "Installed Dependencies" msg_info "Restoring Data" - cp /opt/calibre-web/app.db_backup /opt/calibre-web/app.db 2>/dev/null || true + cp /opt/calibre-web/app.db_backup /opt/calibre-web/app.db 2>/dev/null rm -f /opt/calibre-web/app.db_backup msg_ok "Restored Data" From 9c17e368b110652effddcf1559e9a27808572347 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 08:41:15 +0100 Subject: [PATCH 06/23] fix: address CrazyWolf13 review feedback - Remove msg_info before mkdir (no need for msg block) - kept only for apt/pip (these generate stdout) Addressed reviewer comments from CrazyWolf13 (2026-02-10) --- install/calibre-web-install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 7b336921a..30b27e0c1 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -37,7 +37,6 @@ cd /opt/calibre-web $STD pip3 install --no-cache-dir -r requirements.txt msg_ok "Installed Python Dependencies" -msg_info "Creating Data Directory" mkdir -p /opt/calibre-web/data msg_ok "Created Data Directory" From cf7b97bcdc118ec9260e88f15e69e1eb7abf3601 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 10:49:16 +0100 Subject: [PATCH 07/23] fix: apply remaining CrazyWolf13 inline suggestions --- ct/calibre-web.sh | 1 - install/calibre-web-install.sh | 10 ++++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh index 433345062..926fa1944 100644 --- a/ct/calibre-web.sh +++ b/ct/calibre-web.sh @@ -30,7 +30,6 @@ function update_script() { fi if check_for_gh_release "calibre-web" "janeczku/calibre-web"; then - msg_info "Stopping Service" systemctl stop calibre-web msg_ok "Stopped Service" diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 30b27e0c1..d204fd2a8 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -37,10 +37,9 @@ cd /opt/calibre-web $STD pip3 install --no-cache-dir -r requirements.txt msg_ok "Installed Python Dependencies" -mkdir -p /opt/calibre-web/data -msg_ok "Created Data Directory" - msg_info "Creating Service" +mkdir -p /opt/calibre-web/data + cat < Date: Tue, 10 Feb 2026 10:57:19 +0100 Subject: [PATCH 08/23] fix: remove remaining inline comments from ct script --- ct/calibre-web.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh index 926fa1944..b2ea6a504 100644 --- a/ct/calibre-web.sh +++ b/ct/calibre-web.sh @@ -6,18 +6,18 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Source: https://github.com/janeczku/calibre-web APP="calibre-web" -var_tags="${var_tags:-media;books}" # Max 2 tags, semicolon-separated -var_cpu="${var_cpu:-2}" # CPU cores: 1-4 typical -var_ram="${var_ram:-2048}" # RAM in MB: 512, 1024, 2048, etc. -var_disk="${var_disk:-8}" # Disk in GB: 6, 8, 10, 20 typical -var_os="${var_os:-debian}" # OS: debian, ubuntu, alpine -var_version="${var_version:-13}" # OS Version: 13 (Debian), 24.04 (Ubuntu), 3.21 (Alpine) -var_unprivileged="${var_unprivileged:-1}" # 1=unprivileged (secure), 0=privileged (for Docker/Podman) +var_tags="${var_tags:-media;books}" +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" # Display app name and setup header -variables # Initialize build.func variables -color # Load color variables for output -catch_errors # Enable error handling with automatic exit on failure +header_info "$APP" +variables +color +catch_errors function update_script() { header_info From 36a3f330312b13e16818a48513a32252dca967c5 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:00:19 +0100 Subject: [PATCH 09/23] fix: address remaining heredoc and trailing blank line comments --- install/calibre-web-install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index d204fd2a8..02a0d4936 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -40,7 +40,7 @@ msg_ok "Installed Python Dependencies" msg_info "Creating Service" mkdir -p /opt/calibre-web/data -cat </etc/systemd/system/calibre-web.service [Unit] Description=Calibre-Web Service After=network.target @@ -65,5 +65,4 @@ customize msg_info "Cleaning up" apt -y autoremove apt -y autoclean - cleanup_lxc From b672954401a4c53248670b165e8fb9c8f8dab561 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:04:10 +0100 Subject: [PATCH 10/23] fix: remove unnecessary msg_info/msg_ok block for service creation --- install/calibre-web-install.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 02a0d4936..28443517c 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -37,7 +37,6 @@ cd /opt/calibre-web $STD pip3 install --no-cache-dir -r requirements.txt msg_ok "Installed Python Dependencies" -msg_info "Creating Service" mkdir -p /opt/calibre-web/data cat </etc/systemd/system/calibre-web.service @@ -57,7 +56,6 @@ RestartSec=5 WantedBy=multi-user.target EOF systemctl enable -q --now calibre-web -msg_ok "Created Service" motd_ssh customize From 8d7d6ee5f321543db8b75d843246fc193189b00d Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:06:23 +0100 Subject: [PATCH 11/23] fix: apply reviewer suggestion for service creation block --- install/calibre-web-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 28443517c..e66fef4e3 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -37,6 +37,7 @@ cd /opt/calibre-web $STD pip3 install --no-cache-dir -r requirements.txt msg_ok "Installed Python Dependencies" +msg_info "Creating Service" mkdir -p /opt/calibre-web/data cat </etc/systemd/system/calibre-web.service From 996f551ea400e25ea2c126552681636e94816bc2 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:08:14 +0100 Subject: [PATCH 12/23] style: match greptile heredoc redirection format --- install/calibre-web-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index e66fef4e3..264350e2d 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -40,7 +40,7 @@ msg_ok "Installed Python Dependencies" msg_info "Creating Service" mkdir -p /opt/calibre-web/data -cat </etc/systemd/system/calibre-web.service +cat < /etc/systemd/system/calibre-web.service [Unit] Description=Calibre-Web Service After=network.target From b8e23d9a54f09086d0b52b979ff202faeb302cb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Miko=C5=82ajczyk?= <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 17:18:23 +0100 Subject: [PATCH 13/23] Update calibre-web-install.sh --- install/calibre-web-install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 264350e2d..ad3e29bed 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -61,7 +61,6 @@ systemctl enable -q --now calibre-web motd_ssh customize -msg_info "Cleaning up" apt -y autoremove apt -y autoclean cleanup_lxc From f2299ee94127bbc6c6ec6dae0521420c4f5bef8e Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 17:23:59 +0100 Subject: [PATCH 14/23] fix(calibre-web): align review feedback on installer and defaults --- frontend/public/json/calibre-web.json | 8 ++++---- install/calibre-web-install.sh | 5 ++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/frontend/public/json/calibre-web.json b/frontend/public/json/calibre-web.json index ef7d1b88b..7e509b0c2 100644 --- a/frontend/public/json/calibre-web.json +++ b/frontend/public/json/calibre-web.json @@ -28,13 +28,13 @@ } ], "default_credentials": { - "username": "admin", - "password": "admin123" + "username": null, + "password": null }, "notes": [ { - "text": "Default credentials: admin / admin123 - Change immediately after first login!", - "type": "warning" + "text": "No credentials are set by this script. Complete setup and create credentials in the first-run wizard.", + "type": "info" }, { "text": "Upload your Calibre library metadata.db during first setup wizard.", diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index ad3e29bed..42d9b0348 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: mikolaj92 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/janeczku/calibre-web source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" @@ -37,10 +37,9 @@ cd /opt/calibre-web $STD pip3 install --no-cache-dir -r requirements.txt msg_ok "Installed Python Dependencies" -msg_info "Creating Service" mkdir -p /opt/calibre-web/data -cat < /etc/systemd/system/calibre-web.service +cat </etc/systemd/system/calibre-web.service [Unit] Description=Calibre-Web Service After=network.target From f9e3a931ff00dfa876040d982d6452a515ed43b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Miko=C5=82ajczyk?= <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:29:18 +0100 Subject: [PATCH 15/23] Update install/calibre-web-install.sh Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com> --- install/calibre-web-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 42d9b0348..6037cfbd9 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -37,9 +37,9 @@ cd /opt/calibre-web $STD pip3 install --no-cache-dir -r requirements.txt msg_ok "Installed Python Dependencies" -mkdir -p /opt/calibre-web/data - +msg_info "Creating Service" cat </etc/systemd/system/calibre-web.service +mkdir -p /opt/calibre-web/data [Unit] Description=Calibre-Web Service After=network.target From bbcdf2c44630cc99de9a4826e62c971486dc9a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Miko=C5=82ajczyk?= <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:29:31 +0100 Subject: [PATCH 16/23] Update install/calibre-web-install.sh Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com> --- install/calibre-web-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 6037cfbd9..62869dad5 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -56,6 +56,7 @@ RestartSec=5 WantedBy=multi-user.target EOF systemctl enable -q --now calibre-web +msg_ok "Created Service" motd_ssh customize From a4c7dce494019b13a393168707b1fbc7ebdacb2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Miko=C5=82ajczyk?= <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:29:43 +0100 Subject: [PATCH 17/23] Update install/calibre-web-install.sh Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com> --- install/calibre-web-install.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 62869dad5..1b5d68c7d 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -60,7 +60,4 @@ msg_ok "Created Service" motd_ssh customize - -apt -y autoremove -apt -y autoclean cleanup_lxc From b5188819969a7d986bf8b3123ed246d514aee00d Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:31:29 +0100 Subject: [PATCH 18/23] calibre-web: switch pip installs to uv and fix service block order --- ct/calibre-web.sh | 4 +++- install/calibre-web-install.sh | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh index b2ea6a504..0400755db 100644 --- a/ct/calibre-web.sh +++ b/ct/calibre-web.sh @@ -29,6 +29,8 @@ function update_script() { exit fi + setup_uv + if check_for_gh_release "calibre-web" "janeczku/calibre-web"; then msg_info "Stopping Service" systemctl stop calibre-web @@ -42,7 +44,7 @@ function update_script() { msg_info "Installing Dependencies" cd /opt/calibre-web - $STD pip3 install --no-cache-dir -r requirements.txt + $STD uv pip install --system --no-cache-dir -r requirements.txt msg_ok "Installed Dependencies" msg_info "Restoring Data" diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 1b5d68c7d..3ec8c8adc 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -16,7 +16,6 @@ update_os msg_info "Installing Dependencies" $STD apt install -y \ python3 \ - python3-pip \ imagemagick \ libpango-1.0-0 \ libharfbuzz0b \ @@ -32,14 +31,17 @@ msg_info "Setting up Calibre-Web" fetch_and_deploy_gh_release "calibre-web" "janeczku/calibre-web" "tarball" "latest" "/opt/calibre-web" msg_ok "Setup Calibre-Web" +setup_uv + msg_info "Installing Python Dependencies" cd /opt/calibre-web -$STD pip3 install --no-cache-dir -r requirements.txt +$STD uv pip install --system --no-cache-dir -r requirements.txt msg_ok "Installed Python Dependencies" +mkdir -p /opt/calibre-web/data + msg_info "Creating Service" cat </etc/systemd/system/calibre-web.service -mkdir -p /opt/calibre-web/data [Unit] Description=Calibre-Web Service After=network.target From 2b7eed26307b14958f2f8e164611d678acc6f9e7 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:33:47 +0100 Subject: [PATCH 19/23] calibre-web: use uv sync (native) instead of pip-compatible install --- ct/calibre-web.sh | 2 +- install/calibre-web-install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh index 0400755db..e9254001a 100644 --- a/ct/calibre-web.sh +++ b/ct/calibre-web.sh @@ -44,7 +44,7 @@ function update_script() { msg_info "Installing Dependencies" cd /opt/calibre-web - $STD uv pip install --system --no-cache-dir -r requirements.txt + $STD uv sync --no-dev msg_ok "Installed Dependencies" msg_info "Restoring Data" diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 3ec8c8adc..d899f3b76 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -35,7 +35,7 @@ setup_uv msg_info "Installing Python Dependencies" cd /opt/calibre-web -$STD uv pip install --system --no-cache-dir -r requirements.txt +$STD uv sync --no-dev msg_ok "Installed Python Dependencies" mkdir -p /opt/calibre-web/data @@ -50,7 +50,7 @@ After=network.target Type=simple User=root WorkingDirectory=/opt/calibre-web -ExecStart=/usr/bin/python3 /opt/calibre-web/cps.py +ExecStart=/opt/calibre-web/.venv/bin/python /opt/calibre-web/cps.py Restart=on-failure RestartSec=5 From 0f713dea2fad21f9b2896929f014cfd1c74a3c51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Miko=C5=82ajczyk?= <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:46:24 +0100 Subject: [PATCH 20/23] Update install/calibre-web-install.sh Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com> --- install/calibre-web-install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index d899f3b76..5424a7a72 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -38,9 +38,8 @@ cd /opt/calibre-web $STD uv sync --no-dev msg_ok "Installed Python Dependencies" -mkdir -p /opt/calibre-web/data - msg_info "Creating Service" +mkdir -p /opt/calibre-web/data cat </etc/systemd/system/calibre-web.service [Unit] Description=Calibre-Web Service From 79a3a3bc791bd4ffffed103b5f63a2adc858bc0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Miko=C5=82ajczyk?= <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:46:37 +0100 Subject: [PATCH 21/23] Update install/calibre-web-install.sh Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com> --- install/calibre-web-install.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index 5424a7a72..dc201423c 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -27,10 +27,7 @@ msg_info "Installing Calibre (for eBook conversion)" $STD apt install -y calibre msg_ok "Installed Calibre" -msg_info "Setting up Calibre-Web" fetch_and_deploy_gh_release "calibre-web" "janeczku/calibre-web" "tarball" "latest" "/opt/calibre-web" -msg_ok "Setup Calibre-Web" - setup_uv msg_info "Installing Python Dependencies" From cca810310171af55302f335338c8f2bce8250828 Mon Sep 17 00:00:00 2001 From: mikolaj92 <7442637+mikolaj92@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:47:12 +0100 Subject: [PATCH 22/23] calibre-web: move setup_uv after deploy in update path --- ct/calibre-web.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh index e9254001a..a0f0574f3 100644 --- a/ct/calibre-web.sh +++ b/ct/calibre-web.sh @@ -29,8 +29,6 @@ function update_script() { exit fi - setup_uv - if check_for_gh_release "calibre-web" "janeczku/calibre-web"; then msg_info "Stopping Service" systemctl stop calibre-web @@ -42,6 +40,8 @@ function update_script() { CLEAN_INSTALL=1 fetch_and_deploy_gh_release "calibre-web" "janeczku/calibre-web" "tarball" "latest" "/opt/calibre-web" + setup_uv + msg_info "Installing Dependencies" cd /opt/calibre-web $STD uv sync --no-dev From 9395dc94fbfb8622e5367e457f4a75654f97c2b4 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:53:26 +0100 Subject: [PATCH 23/23] space :) --- ct/calibre-web.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh index a0f0574f3..278dd9ff8 100644 --- a/ct/calibre-web.sh +++ b/ct/calibre-web.sh @@ -39,7 +39,6 @@ function update_script() { msg_ok "Backed up Data" CLEAN_INSTALL=1 fetch_and_deploy_gh_release "calibre-web" "janeczku/calibre-web" "tarball" "latest" "/opt/calibre-web" - setup_uv msg_info "Installing Dependencies"