Files

67 lines
2.2 KiB
Bash
Raw Permalink Normal View History

2026-02-03 20:36:33 +01:00
#!/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")
2026-02-03 20:36:33 +01:00
# Copyright (c) 2021-2026 community-scripts ORG
# Author: CrazyWolf13
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
2026-05-23 09:48:03 +02:00
# Source: https://wealthfolio.app/ | Github: https://github.com/wealthfolio/wealthfolio
2026-02-03 20:36:33 +01:00
APP="Wealthfolio"
var_tags="${var_tags:-finance;portfolio}"
2026-05-23 09:48:03 +02:00
var_cpu="${var_cpu:-1}"
var_ram="${var_ram:-512}"
var_disk="${var_disk:-4}"
2026-02-03 20:36:33 +01:00
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_arm64="${var_arm64:-no}"
2026-02-03 20:36:33 +01:00
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
2026-03-06 16:17:00 +01:00
if grep -q '^WF_CORS_ALLOW_ORIGINS=\*$' /opt/wealthfolio/.env; then
sed -i "s|^WF_CORS_ALLOW_ORIGINS=\*$|WF_CORS_ALLOW_ORIGINS=http://${LOCAL_IP}:8080|" /opt/wealthfolio/.env
fi
2026-05-23 09:48:03 +02:00
if check_for_gh_release "wealthfolio" "wealthfolio/wealthfolio"; then
2026-02-03 20:36:33 +01:00
msg_info "Stopping Service"
systemctl stop wealthfolio
msg_ok "Stopped Service"
create_backup /opt/wealthfolio_data /opt/wealthfolio/.env
2026-02-03 20:36:33 +01:00
2026-05-23 09:48:03 +02:00
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "wealthfolio" "wealthfolio/wealthfolio" "prebuild" "latest" "/opt/wealthfolio" "wealthfolio-server-*-linux-amd64.tar.gz"
2026-02-03 20:36:33 +01:00
restore_backup
install -m 755 /opt/wealthfolio/wealthfolio-server /usr/local/bin/wealthfolio-server
2026-02-03 20:36:33 +01:00
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 "${GATEWAY}${BGN}http://${IP}:8080${CL}"