Merge branch 'feature/DiscoPanel' of https://github.com/DragoQC/ProxmoxVED into feature/DiscoPanel

This commit is contained in:
DragoQC 2025-11-29 08:55:17 -05:00
commit 8e2ea979a1

View File

@ -18,7 +18,6 @@ msg_info "Installing Dependencies"
$STD apt install -y build-essential
msg_ok "Installed Dependencies"
msg_info "Installing Docker"
DOCKER_CONFIG_PATH='/etc/docker/daemon.json'
mkdir -p $(dirname $DOCKER_CONFIG_PATH)
@ -26,9 +25,9 @@ echo -e '{\n "log-driver": "journald"\n}' >/etc/docker/daemon.json
$STD sh <(curl -fsSL https://get.docker.com)
msg_ok "Installed Docker"
fetch_and_deploy_gh_release "discopanel" "nickheyer/discopanel" "tarball" "latest" "/opt/discopanel"
fetch_and_deploy_gh_release "discopanel" "nickheyer/discopanel" "tarball"
setup_nodejs
setup_go
msg_info "Building DiscoPanel frontend"
cd /opt/discopanel/web/discopanel
@ -36,8 +35,6 @@ $STD npm install
$STD npm run build
msg_ok "Built DiscoPanel frontend"
setup_go
msg_info "Building DiscoPanel backend"
cd /opt/discopanel
$STD go build -o discopanel cmd/discopanel/main.go