api-docs fix

This commit is contained in:
Saeed Vaziry
2025-06-10 12:23:42 +02:00
parent c6ed3f029d
commit adc0653d15
44 changed files with 30934 additions and 23428 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
export VITO_VERSION="2.x"
export VITO_VERSION="3.x"
export DEBIAN_FRONTEND=noninteractive
export NEEDRESTART_MODE=a
@ -83,6 +83,11 @@ if ! echo "${V_NGINX_CONFIG}" | tee /etc/nginx/nginx.conf; then
fi
service nginx start
# nodejs
export V_NODE_VERSION="20.x"
curl -fsSL https://deb.nodesource.com/setup_${V_NODE_VERSION} | sudo -E bash -
apt install -y nodejs
# php
export V_PHP_VERSION="8.4"
add-apt-repository ppa:ondrej/php -y