mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-04-16 15:51:55 +00:00

* Fixes and standard enforcement * Update * Update * Update install/navidrome-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/ntfy-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/nzbget-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/n8n-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/openhab-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/paperless-ai-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/pairdrop-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Pass 2 * Update * Update --------- Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com>
103 lines
3.3 KiB
Bash
103 lines
3.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2025 community-scripts ORG
|
|
# Author: vhsdream
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/dotnetfactory/fluid-calendar
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt-get install -y \
|
|
zip \
|
|
gnupg \
|
|
postgresql-common
|
|
msg_ok "Installed Dependencies"
|
|
|
|
msg_info "Installing Additional Dependencies"
|
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
|
|
echo "YES" | /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh &>/dev/null
|
|
$STD apt-get install -y postgresql-17 nodejs
|
|
msg_ok "Installed Additional Dependencies"
|
|
|
|
msg_info "Setting up Postgresql Database"
|
|
DB_NAME="fluiddb"
|
|
DB_USER="fluiduser"
|
|
DB_PASS="$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)"
|
|
NEXTAUTH_SECRET="$(openssl rand -base64 44 | tr -dc 'a-zA-Z0-9' | cut -c1-32)"
|
|
$STD sudo -u postgres psql -c "CREATE USER $DB_USER WITH ENCRYPTED PASSWORD '$DB_PASS';"
|
|
$STD sudo -u postgres psql -c "CREATE DATABASE $DB_NAME WITH OWNER $DB_USER ENCODING 'UTF8' TEMPLATE template0;"
|
|
$STD sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE $DB_NAME to $DB_USER;"
|
|
$STD sudo -u postgres psql -c "ALTER USER $DB_USER WITH SUPERUSER;"
|
|
{
|
|
echo "${APPLICATION} Credentials"
|
|
echo "Database User: $DB_USER"
|
|
echo "Database Password: $DB_PASS"
|
|
echo "Database Name: $DB_NAME"
|
|
echo "NextAuth Secret: $NEXTAUTH_SECRET"
|
|
} >>~/$APPLICATION.creds
|
|
msg_ok "Set up Postgresql Database"
|
|
|
|
msg_info "Setup ${APPLICATION}"
|
|
tmp_file=$(mktemp)
|
|
RELEASE=$(curl -fsSL https://api.github.com/repos/dotnetfactory/fluid-calendar/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
|
|
curl -fsSL "https://github.com/dotnetfactory/fluid-calendar/archive/refs/tags/v${RELEASE}.zip" -o "$tmp_file"
|
|
unzip -q $tmp_file
|
|
mv ${APPLICATION}-${RELEASE}/ /opt/${APPLICATION}
|
|
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
|
|
|
|
cat <<EOF >/opt/fluid-calendar/.env
|
|
DATABASE_URL="postgresql://${DB_USER}:${DB_PASS}@localhost:5432/${DB_NAME}"
|
|
|
|
# Change the URL below to your external URL
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
NEXT_PUBLIC_APP_URL="http://localhost:3000"
|
|
NEXTAUTH_SECRET="${NEXTAUTH_SECRET}"
|
|
NEXT_PUBLIC_SITE_URL="http://localhost:3000"
|
|
|
|
NEXT_PUBLIC_ENABLE_SAAS_FEATURES=false
|
|
|
|
RESEND_API_KEY=
|
|
RESEND_EMAIL=
|
|
EOF
|
|
export NEXT_TELEMETRY_DISABLED=1
|
|
cd /opt/fluid-calendar
|
|
$STD npm install --legacy-peer-deps
|
|
$STD npm run prisma:generate
|
|
$STD npx prisma migrate deploy
|
|
$STD npm run build:os
|
|
msg_ok "Setup ${APPLICATION}"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/fluid-calendar.service
|
|
[Unit]
|
|
Description=Fluid Calendar Application
|
|
After=network.target postgresql.service
|
|
|
|
[Service]
|
|
Restart=always
|
|
WorkingDirectory=/opt/fluid-calendar
|
|
ExecStart=/usr/bin/npm run start
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now fluid-calendar
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
|
|
msg_info "Cleaning up"
|
|
rm -f $tmp_file
|
|
$STD apt-get -y autoremove
|
|
$STD apt-get -y autoclean
|
|
msg_ok "Cleaned"
|