From 6778d2538f7d798799771452b42e1b4e1f82758f Mon Sep 17 00:00:00 2001 From: Omar Minaya Date: Mon, 23 Jun 2025 04:28:33 -0400 Subject: [PATCH 1/2] New Script: LinkStack (#472) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Testing linkstack * linkstack * removed unecessary warning. * cleanup * getting ahead of the code reviews * Update install/linkstack-install.sh Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> * Update install/linkstack-install.sh Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> * Update install/linkstack-install.sh Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> * Update install/linkstack-install.sh Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> * updating as requested. * updating as requested. * Update linkstack.sh * Update install/linkstack-install.sh * Update ct/linkstack.sh * fixing module list error following ampache example. * fixing module list error following ampache example. * Update frontend/public/json/linkstack.json Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> * added .env file to config_path * Update install/linkstack-install.sh --------- Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- ct/linkstack.sh | 47 +++++++++++++++++++++ frontend/public/json/linkstack.json | 44 ++++++++++++++++++++ install/linkstack-install.sh | 63 +++++++++++++++++++++++++++++ 3 files changed, 154 insertions(+) create mode 100644 ct/linkstack.sh create mode 100644 frontend/public/json/linkstack.json create mode 100644 install/linkstack-install.sh diff --git a/ct/linkstack.sh b/ct/linkstack.sh new file mode 100644 index 00000000..2a88277d --- /dev/null +++ b/ct/linkstack.sh @@ -0,0 +1,47 @@ +#!/usr/bin/env bash +source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) +# Copyright (c) 2021-2025 community-scripts ORG +# Author: Omar Minaya +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://linkstack.org/ + +APP="LinkStack" +var_tags="${var_tags:-os}" +var_cpu="${var_cpu:-1}" +var_ram="${var_ram:-2048}" +var_disk="${var_disk:-10}" +var_os="${var_os:-debian}" +var_version="${var_version:-12}" +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 /var ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + msg_info "Updating $APP LXC" + $STD apt-get update + $STD apt-get -y upgrade + msg_ok "Updated $APP LXC" + + 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} Complete setup at:${CL}" +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/frontend/public/json/linkstack.json b/frontend/public/json/linkstack.json new file mode 100644 index 00000000..7c706345 --- /dev/null +++ b/frontend/public/json/linkstack.json @@ -0,0 +1,44 @@ +{ + "name": "LinkStack", + "slug": "linkstack", + "categories": [ + 9 + ], + "date_created": "2025-05-21", + "type": "ct", + "updateable": false, + "privileged": false, + "config_path": "/var/www/html/linkstack/linkstack/.env", + "interface_port": 80, + "documentation": "https://docs.linkstack.org/", + "website": "https://linkstack.org/", + "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/linkstack.webp", + "description": "LinkStack is an open-source, self-hosted alternative to Linktree, allowing users to create a customizable profile page to share multiple links, hosted on their own server.", + "install_methods": [ + { + "type": "default", + "script": "ct/linkstack.sh", + "resources": { + "cpu": 1, + "ram": 2048, + "hdd": 10, + "os": "Debian", + "version": "12" + } + } + ], + "default_credentials": { + "username": null, + "password": null + }, + "notes": [ + { + "text": "LinkStack can be updated via the user interface.", + "type": "info" + }, + { + "text": "Complete setup via the web interface at http:///. Check installation logs: `cat ~/linkstack-install.log`", + "type": "info" + } + ] +} diff --git a/install/linkstack-install.sh b/install/linkstack-install.sh new file mode 100644 index 00000000..1d6ce833 --- /dev/null +++ b/install/linkstack-install.sh @@ -0,0 +1,63 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2025 community-scripts ORG +# Author: Omar Minaya +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://linkstack.org/ + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Installing dependencies" +$STD apt-get install -y \ + software-properties-common \ + ca-certificates \ + lsb-release \ + apt-transport-https \ + apache2 + unzip +msg_ok "Installed dependencies" + +PHP_VERSION="8.2" PHP_MODULE="sqlite3, mysql, fileinfo" PHP_APACHE="YES" install_php + +msg_info "Installing LinkStack" +$STD a2enmod rewrite + +ZIP_URL="https://github.com/linkstackorg/linkstack/releases/latest/download/linkstack.zip" +ZIP_FILE="/tmp/linkstack.zip" +curl -fsSL -o "$ZIP_FILE" "$ZIP_URL" +unzip -q "$ZIP_FILE" -d /var/www/html/linkstack +chown -R www-data:www-data /var/www/html/linkstack +chmod -R 755 /var/www/html/linkstack + +cat < /etc/apache2/sites-available/linkstack.conf + + ServerAdmin webmaster@localhost + DocumentRoot /var/www/html/linkstack/linkstack + ErrorLog /var/log/apache2/linkstack-error.log + CustomLog /var/log/apache2/linkstack-access.log combined + + Options Indexes FollowSymLinks + AllowOverride All + Require all granted + + +EOF +$STD a2dissite 000-default.conf +$STD a2ensite linkstack.conf +$STD systemctl restart apache2 +msg_ok "Installed LinkStack" + +motd_ssh +customize + +msg_info "Cleaning up" +$STD rm -f "$ZIP_FILE" +$STD apt-get -y autoremove +$STD apt-get -y autoclean +msg_ok "Cleaned" From 60cfa09cc23c6289c83e8e5af811d2513c6eb9b8 Mon Sep 17 00:00:00 2001 From: "app-header-generator[bot]" <194485257+app-header-generator[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 08:28:55 +0000 Subject: [PATCH 2/2] Update .app files (#615) Co-authored-by: GitHub Actions --- ct/headers/booklore | 6 ++++++ ct/headers/linkstack | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 ct/headers/booklore create mode 100644 ct/headers/linkstack diff --git a/ct/headers/booklore b/ct/headers/booklore new file mode 100644 index 00000000..267b0346 --- /dev/null +++ b/ct/headers/booklore @@ -0,0 +1,6 @@ + ____ __ __ + / __ )____ ____ / /__/ / ____ ________ + / __ / __ \/ __ \/ //_/ / / __ \/ ___/ _ \ + / /_/ / /_/ / /_/ / ,< / /___/ /_/ / / / __/ +/_____/\____/\____/_/|_/_____/\____/_/ \___/ + diff --git a/ct/headers/linkstack b/ct/headers/linkstack new file mode 100644 index 00000000..c3413d29 --- /dev/null +++ b/ct/headers/linkstack @@ -0,0 +1,6 @@ + __ _ __ _____ __ __ + / / (_)___ / /__/ ___// /_____ ______/ /__ + / / / / __ \/ //_/\__ \/ __/ __ `/ ___/ //_/ + / /___/ / / / / ,< ___/ / /_/ /_/ / /__/ ,< +/_____/_/_/ /_/_/|_|/____/\__/\__,_/\___/_/|_| +