mirror of
https://github.com/community-scripts/ProxmoxVED.git
synced 2026-03-31 06:24:18 -04:00
- NestJS backend serves both API and Next.js frontend on port 3000 - PostgreSQL 16 with Prisma ORM for database management - pnpm monorepo build with NODE_OPTIONS=8192MB heap - Symlink /app -> /opt/teable for upstream compatibility - 4 CPU / 10GB RAM / 25GB disk (heavy build process)
85 lines
2.2 KiB
Bash
85 lines
2.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: community-scripts
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
|
# Source: https://github.com/teableio/teable
|
|
|
|
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 \
|
|
build-essential \
|
|
python3 \
|
|
git
|
|
msg_ok "Installed Dependencies"
|
|
|
|
NODE_VERSION="22" NODE_MODULE="pnpm" setup_nodejs
|
|
PG_VERSION="16" setup_postgresql
|
|
PG_DB_NAME="teable" PG_DB_USER="teable" setup_postgresql_db
|
|
|
|
fetch_and_deploy_gh_release "teable" "teableio/teable" "tarball"
|
|
|
|
msg_info "Setting up Teable"
|
|
cd /opt/teable
|
|
TEABLE_VERSION=$(cat ~/.teable)
|
|
echo "NEXT_PUBLIC_BUILD_VERSION=\"${TEABLE_VERSION}\"" >>apps/nextjs-app/.env
|
|
export HUSKY=0
|
|
export NODE_OPTIONS="--max-old-space-size=8192"
|
|
$STD pnpm install --frozen-lockfile
|
|
$STD pnpm -F @teable/db-main-prisma prisma-generate --schema ./prisma/postgres/schema.prisma
|
|
msg_ok "Set up Teable"
|
|
|
|
msg_info "Building Teable"
|
|
NODE_ENV=production NEXT_BUILD_ENV_TYPECHECK=false \
|
|
$STD pnpm -r --filter '!playground' run build
|
|
msg_ok "Built Teable"
|
|
|
|
msg_info "Running Database Migrations"
|
|
PRISMA_DATABASE_URL="postgresql://teable:${PG_DB_PASS}@localhost:5432/teable?schema=public" \
|
|
$STD pnpm -F @teable/db-main-prisma prisma-migrate deploy --schema ./prisma/postgres/schema.prisma
|
|
msg_ok "Ran Database Migrations"
|
|
|
|
msg_info "Configuring Teable"
|
|
SECRET_KEY=$(openssl rand -base64 32)
|
|
cat <<EOF >/opt/teable/.env
|
|
PRISMA_DATABASE_URL=postgresql://teable:${PG_DB_PASS}@localhost:5432/teable?schema=public&statement_cache_size=1
|
|
PUBLIC_ORIGIN=http://${LOCAL_IP}:3000
|
|
SECRET_KEY=${SECRET_KEY}
|
|
PORT=3000
|
|
NODE_ENV=production
|
|
NEXT_TELEMETRY_DISABLED=1
|
|
EOF
|
|
ln -sf /opt/teable /app
|
|
msg_ok "Configured Teable"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/teable.service
|
|
[Unit]
|
|
Description=Teable
|
|
After=network.target postgresql.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/opt/teable
|
|
EnvironmentFile=/opt/teable/.env
|
|
ExecStart=/usr/bin/node apps/nestjs-backend/dist/index.js
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now teable
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|