From c8bcfccd64968f881e8b3b9ccafc6ec75aa8c2f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 19:37:04 +0000 Subject: [PATCH] Delete wealthfolio (ct) after migration to ProxmoxVE (#1410) Co-authored-by: github-actions[bot] --- ct/wealthfolio.sh | 86 -------------------------- frontend/public/json/wealthfolio.json | 40 ------------ install/wealthfolio-install.sh | 89 --------------------------- 3 files changed, 215 deletions(-) delete mode 100644 ct/wealthfolio.sh delete mode 100644 frontend/public/json/wealthfolio.json delete mode 100644 install/wealthfolio-install.sh diff --git a/ct/wealthfolio.sh b/ct/wealthfolio.sh deleted file mode 100644 index e52639587..000000000 --- a/ct/wealthfolio.sh +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) -# Copyright (c) 2021-2026 community-scripts ORG -# Author: CrazyWolf13 -# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -# Source: https://wealthfolio.app/ - -APP="Wealthfolio" -var_tags="${var_tags:-finance;portfolio}" -var_cpu="${var_cpu:-4}" -var_ram="${var_ram:-4096}" -var_disk="${var_disk:-10}" -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/wealthfolio ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - - if check_for_gh_release "wealthfolio" "afadil/wealthfolio"; then - msg_info "Stopping Service" - systemctl stop wealthfolio - msg_ok "Stopped Service" - - msg_info "Backing up Data" - cp -r /opt/wealthfolio_data /opt/wealthfolio_data_backup - cp /opt/wealthfolio/.env /opt/wealthfolio_env_backup - msg_ok "Backed up Data" - - CLEAN_INSTALL=1 fetch_and_deploy_gh_release "wealthfolio" "afadil/wealthfolio" "tarball" - - msg_info "Building Frontend (patience)" - cd /opt/wealthfolio - $STD pnpm install --frozen-lockfile - $STD pnpm tsc - $STD pnpm vite build - msg_ok "Built Frontend" - - msg_info "Building Backend (patience)" - cd /opt/wealthfolio/src-server - source ~/.cargo/env - $STD cargo build --release --manifest-path Cargo.toml - cp /opt/wealthfolio/src-server/target/release/wealthfolio-server /usr/local/bin/wealthfolio-server - chmod +x /usr/local/bin/wealthfolio-server - msg_ok "Built Backend" - - msg_info "Restoring Data" - cp -r /opt/wealthfolio_data_backup/. /opt/wealthfolio_data - cp /opt/wealthfolio_env_backup /opt/wealthfolio/.env - rm -rf /opt/wealthfolio_data_backup /opt/wealthfolio_env_backup - msg_ok "Restored Data" - - msg_info "Cleaning Up" - rm -rf /opt/wealthfolio/src-server/target - rm -rf /root/.cargo/registry - rm -rf /opt/wealthfolio/node_modules - msg_ok "Cleaned Up" - - msg_info "Starting Service" - systemctl start wealthfolio - 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 "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" diff --git a/frontend/public/json/wealthfolio.json b/frontend/public/json/wealthfolio.json deleted file mode 100644 index 8c5508b54..000000000 --- a/frontend/public/json/wealthfolio.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "name": "Wealthfolio", - "slug": "wealthfolio", - "categories": [ - 23 - ], - "date_created": "2026-02-03", - "type": "ct", - "updateable": true, - "privileged": false, - "interface_port": 8080, - "documentation": "https://wealthfolio.app/docs/introduction/", - "config_path": "/opt/wealthfolio/.env", - "website": "https://wealthfolio.app/", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/wealthfolio.webp", - "description": "Wealthfolio is a beautiful, privacy-focused investment tracker with local data storage. Track your portfolio across multiple accounts and asset types with detailed performance analytics, goal planning, and multi-currency support.", - "install_methods": [ - { - "type": "default", - "script": "ct/wealthfolio.sh", - "resources": { - "cpu": 4, - "ram": 4096, - "hdd": 10, - "os": "Debian", - "version": "13" - } - } - ], - "default_credentials": { - "username": null, - "password": "See ~/wealthfolio.creds" - }, - "notes": [ - { - "text": "Login password is stored in ~/wealthfolio.creds", - "type": "info" - } - ] -} diff --git a/install/wealthfolio-install.sh b/install/wealthfolio-install.sh deleted file mode 100644 index 8ee9c6e36..000000000 --- a/install/wealthfolio-install.sh +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 community-scripts ORG -# Author: CrazyWolf13 -# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -# Source: https://wealthfolio.app/ - -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 \ - pkg-config \ - libssl-dev \ - build-essential \ - libsqlite3-dev \ - argon2 -msg_ok "Installed Dependencies" - -setup_rust -NODE_MODULE="pnpm" setup_nodejs -fetch_and_deploy_gh_release "wealthfolio" "afadil/wealthfolio" "tarball" - -msg_info "Building Frontend (patience)" -cd /opt/wealthfolio -$STD pnpm install --frozen-lockfile -$STD pnpm tsc -$STD pnpm vite build -msg_ok "Built Frontend" - -msg_info "Building Backend (patience)" -cd /opt/wealthfolio/src-server -$STD cargo build --release --manifest-path Cargo.toml -cp /opt/wealthfolio/src-server/target/release/wealthfolio-server /usr/local/bin/wealthfolio-server -chmod +x /usr/local/bin/wealthfolio-server -msg_ok "Built Backend" - -msg_info "Configuring Wealthfolio" -mkdir -p /opt/wealthfolio_data -SECRET_KEY=$(openssl rand -base64 32) -WF_PASSWORD=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | cut -c1-16) -WF_PASSWORD_HASH=$(echo -n "$WF_PASSWORD" | argon2 "$(openssl rand -base64 16)" -id -e) -cat </opt/wealthfolio/.env -WF_LISTEN_ADDR=0.0.0.0:8080 -WF_DB_PATH=/opt/wealthfolio_data/wealthfolio.db -WF_SECRET_KEY=${SECRET_KEY} -WF_AUTH_PASSWORD_HASH=${WF_PASSWORD_HASH} -WF_STATIC_DIR=/opt/wealthfolio/dist -WF_CORS_ALLOW_ORIGINS=* -WF_REQUEST_TIMEOUT_MS=30000 -EOF -echo "WF_PASSWORD=${WF_PASSWORD}" >~/wealthfolio.creds -msg_ok "Configured Wealthfolio" - -msg_info "Cleaning Up" -rm -rf /opt/wealthfolio/src-server/target -rm -rf /root/.cargo/registry -rm -rf /opt/wealthfolio/node_modules -msg_ok "Cleaned Up" - -msg_info "Creating Service" -cat </etc/systemd/system/wealthfolio.service -[Unit] -Description=Wealthfolio Investment Tracker -After=network.target - -[Service] -Type=simple -User=root -WorkingDirectory=/opt/wealthfolio -EnvironmentFile=/opt/wealthfolio/.env -ExecStart=/usr/local/bin/wealthfolio-server -Restart=on-failure -RestartSec=5 - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now wealthfolio -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc