mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-19 07:05:02 +00:00
404463be21
* Add degoog (ct) * Update degoog.sh * fix --------- Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com> Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com>
89 lines
2.0 KiB
Bash
89 lines
2.0 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: MickLesk (CanbiZ)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/fccview/degoog
|
|
|
|
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 \
|
|
git \
|
|
unzip
|
|
msg_ok "Installed Dependencies"
|
|
|
|
msg_info "Installing Bun"
|
|
export BUN_INSTALL="/root/.bun"
|
|
curl -fsSL https://bun.sh/install | $STD bash
|
|
ln -sf /root/.bun/bin/bun /usr/local/bin/bun
|
|
ln -sf /root/.bun/bin/bunx /usr/local/bin/bunx
|
|
msg_ok "Installed Bun"
|
|
|
|
fetch_and_deploy_gh_release "degoog" "fccview/degoog" "prebuild" "latest" "/opt/degoog" "degoog_*_prebuild.tar.gz"
|
|
|
|
msg_info "Setting up degoog"
|
|
mkdir -p /opt/degoog/data/{engines,plugins,themes,store}
|
|
|
|
cat <<EOF >/opt/degoog/.env
|
|
DEGOOG_PORT=4444
|
|
DEGOOG_ENGINES_DIR=/opt/degoog/data/engines
|
|
DEGOOG_PLUGINS_DIR=/opt/degoog/data/plugins
|
|
DEGOOG_THEMES_DIR=/opt/degoog/data/themes
|
|
DEGOOG_ALIASES_FILE=/opt/degoog/data/aliases.json
|
|
DEGOOG_PLUGIN_SETTINGS_FILE=/opt/degoog/data/plugin-settings.json
|
|
# DEGOOG_SETTINGS_PASSWORDS=changeme
|
|
# DEGOOG_PUBLIC_INSTANCE=false
|
|
# LOGGER=debug
|
|
EOF
|
|
|
|
if [[ ! -f /opt/degoog/data/aliases.json ]]; then
|
|
cat <<EOF >/opt/degoog/data/aliases.json
|
|
{}
|
|
EOF
|
|
fi
|
|
|
|
if [[ ! -f /opt/degoog/data/plugin-settings.json ]]; then
|
|
cat <<EOF >/opt/degoog/data/plugin-settings.json
|
|
{}
|
|
EOF
|
|
fi
|
|
|
|
if [[ ! -f /opt/degoog/data/repos.json ]]; then
|
|
cat <<EOF >/opt/degoog/data/repos.json
|
|
[]
|
|
EOF
|
|
fi
|
|
msg_ok "Set up degoog"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/degoog.service
|
|
[Unit]
|
|
Description=degoog
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=root
|
|
WorkingDirectory=/opt/degoog
|
|
EnvironmentFile=/opt/degoog/.env
|
|
ExecStart=/usr/local/bin/bun run src/server/index.ts
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now degoog
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|