From fd2ec706f322c5004b596e6f79d6eec7b98e57b1 Mon Sep 17 00:00:00 2001 From: "push-app-to-main[bot]" <203845782+push-app-to-main[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 09:59:43 +0200 Subject: [PATCH] Flame (#15464) * Add flame (ct) * fix: review feedback * fix: review feedback * Update ct/flame.sh Co-authored-by: Sam Heinz * Update flame-install.sh --------- Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com> Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Co-authored-by: Sam Heinz Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com> --- ct/flame.sh | 69 ++++++++++++++++++++++++++++++++++++++++ ct/headers/flame | 6 ++++ install/flame-install.sh | 62 ++++++++++++++++++++++++++++++++++++ 3 files changed, 137 insertions(+) create mode 100644 ct/flame.sh create mode 100644 ct/headers/flame create mode 100644 install/flame-install.sh diff --git a/ct/flame.sh b/ct/flame.sh new file mode 100644 index 000000000..4378f4d10 --- /dev/null +++ b/ct/flame.sh @@ -0,0 +1,69 @@ +#!/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: CrazyWolf13 +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/pawelmalak/flame + +APP="Flame" +var_tags="${var_tags:-dashboard;startpage}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-2048}" +var_disk="${var_disk:-4}" +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 [[ ! -d /opt/flame ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + if check_for_gh_release "flame" "pawelmalak/flame"; then + msg_info "Stopping Service" + systemctl stop flame + msg_ok "Stopped Service" + + create_backup /opt/flame/.env \ + /opt/flame/data + CLEAN_INSTALL=1 fetch_and_deploy_gh_release "flame" "pawelmalak/flame" "tarball" + restore_backup + + msg_info "Rebuilding Application" + cd /opt/flame + mkdir -p data public + $STD npm install --production + cd /opt/flame/client + $STD npm install --production + $STD npm run build + cd /opt/flame + cp -r client/build/. public/ + msg_ok "Rebuilt Application" + + msg_info "Starting Service" + systemctl start flame + 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}:5005${CL}" diff --git a/ct/headers/flame b/ct/headers/flame new file mode 100644 index 000000000..7289527f5 --- /dev/null +++ b/ct/headers/flame @@ -0,0 +1,6 @@ + ________ + / ____/ /___ _____ ___ ___ + / /_ / / __ `/ __ `__ \/ _ \ + / __/ / / /_/ / / / / / / __/ +/_/ /_/\__,_/_/ /_/ /_/\___/ + diff --git a/install/flame-install.sh b/install/flame-install.sh new file mode 100644 index 000000000..f38dcae46 --- /dev/null +++ b/install/flame-install.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: CrazyWolf13 +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/pawelmalak/flame + +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 +msg_ok "Installed Dependencies" + +NODE_VERSION="22" setup_nodejs +fetch_and_deploy_gh_release "flame" "pawelmalak/flame" "tarball" + +msg_info "Setting up Flame" +cd /opt/flame +mkdir -p data public +$STD npm install --production +cd /opt/flame/client +$STD npm install --production +$STD npm run build +cd /opt/flame +cp -r client/build/. public/ +FLAME_VERSION=$(cat ~/.flame) +cat </opt/flame/.env +NODE_ENV=production +VERSION=${FLAME_VERSION} +PASSWORD= +EOF +msg_ok "Set up Flame" + +msg_info "Creating Service" +cat </etc/systemd/system/flame.service +[Unit] +Description=Flame Startpage +After=network.target + +[Service] +Type=simple +User=root +WorkingDirectory=/opt/flame +ExecStart=/usr/bin/node server.js +Restart=on-failure +RestartSec=5 + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q --now flame +msg_ok "Created Service" + +motd_ssh +customize +cleanup_lxc