From d95b54024387027a8fd01761aa362924f7d7720d Mon Sep 17 00:00:00 2001 From: MickLesk Date: Mon, 6 Jul 2026 18:05:02 +0200 Subject: [PATCH] Remove: FlowiseAI --- ct/flowiseai.sh | 54 ------------------------------------ install/flowiseai-install.sh | 52 ---------------------------------- 2 files changed, 106 deletions(-) delete mode 100644 ct/flowiseai.sh delete mode 100644 install/flowiseai-install.sh diff --git a/ct/flowiseai.sh b/ct/flowiseai.sh deleted file mode 100644 index 7d4c6468e..000000000 --- a/ct/flowiseai.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) -# Copyright (c) 2021-2026 tteck -# Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://flowiseai.com/ | Github: https://github.com/FlowiseAI/Flowise - -APP="FlowiseAI" -var_tags="${var_tags:-low-code}" -var_disk="${var_disk:-10}" -var_cpu="${var_cpu:-4}" -var_ram="${var_ram:-4096}" -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 [[ ! -f /etc/systemd/system/flowise.service ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - - NODE_VERSION="22" NODE_MODULE="pnpm" setup_nodejs - - msg_info "Updating FlowiseAI (this may take some time)" - systemctl stop flowise - $STD pnpm add -g flowise - if grep -q 'ExecStart=npx flowise start' /etc/systemd/system/flowise.service; then - sed -i 's|ExecStart=npx flowise start|ExecStart=flowise start|' /etc/systemd/system/flowise.service - systemctl daemon-reload - fi - systemctl start flowise - msg_ok "Updated FlowiseAI" - 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}" diff --git a/install/flowiseai-install.sh b/install/flowiseai-install.sh deleted file mode 100644 index 73cc8c1eb..000000000 --- a/install/flowiseai-install.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 tteck -# Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://flowiseai.com/ | Github: https://github.com/FlowiseAI/Flowise - -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 \ - build-essential \ - pkg-config -msg_ok "Installed Dependencies" - -PYTHON_VERSION="3.11" setup_uv -NODE_VERSION="22" NODE_MODULE="pnpm" setup_nodejs - -msg_info "Installing FlowiseAI (Patience)" -PYTHON_BIN="$(uv python find 3.11)" -export npm_config_python="$PYTHON_BIN" -$STD pnpm add -g flowise -mkdir -p /opt/flowiseai -curl -fsSL "https://raw.githubusercontent.com/FlowiseAI/Flowise/main/packages/server/.env.example" -o "/opt/flowiseai/.env" -msg_ok "Installed FlowiseAI" - -msg_info "Creating Service" -cat </etc/systemd/system/flowise.service -[Unit] -Description=FlowiseAI -After=network.target - -[Service] -EnvironmentFile=/opt/flowiseai/.env -ExecStart=flowise start -Restart=always - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now flowise -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc