mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-11-16 02:25:17 +00:00
78 lines
1.9 KiB
Bash
78 lines
1.9 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2025 Community Scripts ORG
|
|
# Author: vhsdream
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://tududi.com/
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt install -y \
|
|
sqlite3 \
|
|
yq
|
|
msg_ok "Installed Dependencies"
|
|
|
|
NODE_VERSION="22" setup_nodejs
|
|
fetch_and_deploy_gh_release "tududi" "chrisvel/tududi" "tarball" "latest" "/opt/tududi"
|
|
|
|
msg_info "Configuring Tududi"
|
|
cd /opt/tududi
|
|
$STD npm install
|
|
export NODE_ENV=production
|
|
$STD npm run frontend:build
|
|
mv ./dist ./backend
|
|
msg_ok "Configured Tududi"
|
|
|
|
msg_info "Creating env and database"
|
|
DB_LOCATION="/opt/tududi-db"
|
|
UPLOAD_DIR="/opt/tududi-uploads"
|
|
mkdir -p {"$DB_LOCATION","$UPLOAD_DIR"}
|
|
SECRET="$(openssl rand -hex 64)"
|
|
sed -e '/^NODE_ENV=/s/=.*$/=production/' \
|
|
-e 's/^TUDUDI_USER/# TUDUDI_USER/g' \
|
|
-e "/_SECRET=/s/=.*$/=${SECRET}/" \
|
|
-e "/^# DB_FILE/s/^# //; \
|
|
\|DB_FILE|s|/path.*$|${DB_LOCATION}/production.sqlite3|" \
|
|
-e "/^# TUDUDI_ALLOWED/s/^# //; \
|
|
\|_ORIGINS=|s|=.*$|=<your tududi IP or FDQN>|" \
|
|
-e "/^# TUDUDI_UPLOAD/s/^# //; \
|
|
\|UPLOAD_PATH=|s|=.*$|=${UPLOAD_DIR}|" \
|
|
/opt/tududi/backend/.env.example >/opt/tududi/backend/.env
|
|
export DB_FILE="${DB_LOCATION}/production.sqlite3"
|
|
$STD npm run db:init
|
|
msg_ok "Created env and database"
|
|
|
|
msg_info "Creating service"
|
|
cat <<EOF >/etc/systemd/system/tududi.service
|
|
[Unit]
|
|
Description=Tududi Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/opt/tududi/backend
|
|
EnvironmentFile=/opt/tududi/backend/.env
|
|
ExecStart=/usr/bin/bash /opt/tududi/backend/cmd/start.sh
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now tududi
|
|
msg_ok "Created service"
|
|
|
|
motd_ssh
|
|
customize
|
|
|
|
msg_info "Cleaning up"
|
|
$STD apt -y autoremove
|
|
$STD apt -y autoclean
|
|
$STD apt -y clean
|
|
msg_ok "Cleaned"
|