Big NodeJS Update: Use Helper Function on all Install-Scripts (#4744)

* Big NodeJS Update: Use Helper Function on all Install-Scripts

* add jq in node_function

* add more
This commit is contained in:
CanbiZ
2025-05-27 13:48:34 +02:00
committed by GitHub
parent e6805db9f5
commit 72db97b226
58 changed files with 148 additions and 791 deletions

View File

@@ -17,8 +17,7 @@ msg_info "Installing Dependencies"
$STD apt-get install -y \
nginx \
mariadb-server \
ca-certificates \
gnupg
ca-certificates
msg_ok "Installed Dependencies"
msg_info "Configuring Database"
@@ -37,16 +36,7 @@ mariadb -u root -e "GRANT ALL ON $DB_NAME.* TO '$DB_USER'@'localhost'; FLUSH PRI
} >>~/ghost.creds
msg_ok "Configured MySQL"
msg_info "Setting up Node.js Repository"
mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
msg_ok "Set up Node.js Repository"
msg_info "Setup Node.js"
$STD apt-get update
$STD apt-get install -y nodejs
msg_ok "Setup Node.js"
NODE_VERSION="20" install_node_and_modules
msg_info "Installing Ghost CLI"
$STD npm install ghost-cli@latest -g