This commit is contained in:
CanbiZ 2026-01-14 15:31:49 +01:00
parent d5620def9e
commit 7298ad6450

View File

@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 community-scripts ORG # Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ) # Author: MickLesk (CanbiZ)
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/RostislavDugin/postgresus # Source: https://github.com/databasus/databasus
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color color
@ -19,34 +19,34 @@ msg_ok "Installed Dependencies"
import_local_ip import_local_ip
PG_VERSION="17" setup_postgresql PG_VERSION="17" setup_postgresql
PG_DB_NAME="postgresus" PG_DB_USER="postgresus" setup_postgresql_db PG_DB_NAME="databasus" PG_DB_USER="databasus" setup_postgresql_db
setup_go setup_go
NODE_VERSION="24" setup_nodejs NODE_VERSION="24" setup_nodejs
fetch_and_deploy_gh_release "postgresus" "RostislavDugin/postgresus" "tarball" "latest" "/opt/postgresus" fetch_and_deploy_gh_release "databasus" "databasus/databasus" "tarball" "latest" "/opt/databasus"
msg_info "Building Postgresus (Patience)" msg_info "Building Databasus (Patience)"
cd /opt/postgresus/frontend cd /opt/databasus/frontend
$STD npm ci $STD npm ci
$STD npm run build $STD npm run build
cd /opt/postgresus/backend cd /opt/databasus/backend
$STD go mod tidy $STD go mod tidy
$STD go mod download $STD go mod download
$STD go install github.com/swaggo/swag/cmd/swag@latest $STD go install github.com/swaggo/swag/cmd/swag@latest
$STD /root/go/bin/swag init -g cmd/main.go -o swagger $STD /root/go/bin/swag init -g cmd/main.go -o swagger
$STD env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o postgresus ./cmd/main.go $STD env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o databasus ./cmd/main.go
mv /opt/postgresus/backend/postgresus /opt/postgresus/postgresus mv /opt/databasus/backend/databasus /opt/databasus/databasus
mkdir -p /opt/postgresus_data/{data,backups,logs} mkdir -p /opt/databasus_data/{data,backups,logs}
mkdir -p /postgresus-data/temp mkdir -p /databasus-data/temp
mkdir -p /opt/postgresus/ui/build mkdir -p /opt/databasus/ui/build
cp -r /opt/postgresus/frontend/dist/* /opt/postgresus/ui/build/ cp -r /opt/databasus/frontend/dist/* /opt/databasus/ui/build/
cp -r /opt/postgresus/backend/migrations /opt/postgresus/ cp -r /opt/databasus/backend/migrations /opt/databasus/
chown -R postgres:postgres /opt/postgresus chown -R postgres:postgres /opt/databasus
chown -R postgres:postgres /opt/postgresus_data chown -R postgres:postgres /opt/databasus_data
chown -R postgres:postgres /postgresus-data chown -R postgres:postgres /databasus-data
msg_ok "Built Postgresus" msg_ok "Built Databasus"
msg_info "Configuring Postgresus" msg_info "Configuring Databasus"
ADMIN_PASS=$(openssl rand -base64 12) ADMIN_PASS=$(openssl rand -base64 12)
JWT_SECRET=$(openssl rand -hex 32) JWT_SECRET=$(openssl rand -hex 32)
@ -59,7 +59,7 @@ done
$STD go install github.com/pressly/goose/v3/cmd/goose@latest $STD go install github.com/pressly/goose/v3/cmd/goose@latest
ln -sf /root/go/bin/goose /usr/local/bin/goose ln -sf /root/go/bin/goose /usr/local/bin/goose
cat <<EOF >/opt/postgresus/.env cat <<EOF >/opt/databasus/.env
# Environment # Environment
ENV_MODE=production ENV_MODE=production
@ -74,7 +74,7 @@ DATABASE_URL=postgres://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}
# Migrations # Migrations
GOOSE_DRIVER=postgres GOOSE_DRIVER=postgres
GOOSE_DBSTRING=postgres://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}?sslmode=disable GOOSE_DBSTRING=postgres://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}?sslmode=disable
GOOSE_MIGRATION_DIR=/opt/postgresus/migrations GOOSE_MIGRATION_DIR=/opt/databasus/migrations
# Security # Security
JWT_SECRET=${JWT_SECRET} JWT_SECRET=${JWT_SECRET}
@ -85,23 +85,23 @@ ADMIN_EMAIL=admin@localhost
ADMIN_PASSWORD=${ADMIN_PASS} ADMIN_PASSWORD=${ADMIN_PASS}
# Paths # Paths
DATA_DIR=/opt/postgresus_data/data DATA_DIR=/opt/databasus_data/data
BACKUP_DIR=/opt/postgresus_data/backups BACKUP_DIR=/opt/databasus_data/backups
LOG_DIR=/opt/postgresus_data/logs LOG_DIR=/opt/databasus_data/logs
# PostgreSQL Tools (for creating backups) # PostgreSQL Tools (for creating backups)
PG_DUMP_PATH=/usr/lib/postgresql/17/bin/pg_dump PG_DUMP_PATH=/usr/lib/postgresql/17/bin/pg_dump
PG_RESTORE_PATH=/usr/lib/postgresql/17/bin/pg_restore PG_RESTORE_PATH=/usr/lib/postgresql/17/bin/pg_restore
PSQL_PATH=/usr/lib/postgresql/17/bin/psql PSQL_PATH=/usr/lib/postgresql/17/bin/psql
EOF EOF
chown postgres:postgres /opt/postgresus/.env chown postgres:postgres /opt/databasus/.env
chmod 600 /opt/postgresus/.env chmod 600 /opt/databasus/.env
msg_ok "Configured Postgresus" msg_ok "Configured Databasus"
msg_info "Creating Postgresus Service" msg_info "Creating Databasus Service"
cat <<EOF >/etc/systemd/system/postgresus.service cat <<EOF >/etc/systemd/system/databasus.service
[Unit] [Unit]
Description=Postgresus - PostgreSQL Backup Management Description=Databasus - PostgreSQL Backup Management
After=network.target postgresql.service After=network.target postgresql.service
Requires=postgresql.service Requires=postgresql.service
@ -109,10 +109,10 @@ Requires=postgresql.service
Type=simple Type=simple
User=postgres User=postgres
Group=postgres Group=postgres
WorkingDirectory=/opt/postgresus WorkingDirectory=/opt/databasus
Environment="PATH=/usr/local/bin:/usr/bin:/bin" Environment="PATH=/usr/local/bin:/usr/bin:/bin"
EnvironmentFile=/opt/postgresus/.env EnvironmentFile=/opt/databasus/.env
ExecStart=/opt/postgresus/postgresus ExecStart=/opt/databasus/databasus
Restart=always Restart=always
RestartSec=5 RestartSec=5
StandardOutput=journal StandardOutput=journal
@ -122,11 +122,11 @@ StandardError=journal
WantedBy=multi-user.target WantedBy=multi-user.target
EOF EOF
$STD systemctl daemon-reload $STD systemctl daemon-reload
$STD systemctl enable -q --now postgresus $STD systemctl enable -q --now databasus
msg_ok "Created Postgresus Service" msg_ok "Created Databasus Service"
msg_info "Configuring Nginx" msg_info "Configuring Nginx"
cat <<EOF >/etc/nginx/sites-available/postgresus cat <<EOF >/etc/nginx/sites-available/databasus
server { server {
listen 80; listen 80;
server_name _; server_name _;