mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-07-17 16:47:05 +00:00
* docs: bump documented Node.js minimum to 25 Etherpad is moving its supported Node.js floor to >= 25 (CI matrix is already pinned to 25 across all workflows on the node25-corepack-pnpm11 work). Sync the user-facing documentation so the install instructions, requirements section, and plugin metadata example all reflect the new minimum instead of Node 22 / 12.17. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: require Node.js >= 25 (engines, installers, Dockerfile, snap, CI) #7747 added Node 25 *support* but left the floor at Node 22. This commit completes the cutover so the runtime requirement matches the documentation bumped in the previous commit. - package.json: engines.node ">=22.13.0" → ">=25.0.0" - bin/functions.sh, bin/installer.sh, bin/installer.ps1: REQUIRED_NODE bumped to 25 (controls the error message users see when they invoke the installer or pnpm scripts on an older Node) - Dockerfile: base image node:22-alpine → node:25-alpine (×2). Corepack comment updated: Node 25 no longer ships corepack at all, so we install it from npm rather than refreshing a stale signing-key list - snap/snapcraft.yaml: pinned NODE_VERSION 22.22.2 → 25.9.0 and the surrounding design notes rewritten to reflect Node 25 instead of 22 - .github/workflows/*.yml: matrix dropped from [22, 24, 25] to just [25] (anything older now fails engines anyway). Stale comments in build-and-deploy-docs.yml referencing vite 8's 22.12 floor cleaned up - bin/plugins/lib/npmpublish.yml: setup-node 22 → 25 so the plugin template propagated to every ether/* plugin matches the new minimum Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(docker): install pnpm directly on Node 25 (no corepack) node:25-alpine doesn't ship corepack but does pre-install yarn at /usr/local/bin/yarn, so `npm install -g corepack@latest` fails with EEXIST trying to register its yarn shim. Per #7747, end-users install pnpm via plain `npm install -g pnpm` on Node 25 — use the same flow in the Dockerfile (and remove the unused yarn binary so it doesn't sit on PATH inside the image). Drops COREPACK_HOME and the related issue-7687 cache-sharing tweak since there's no corepack shim to share. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
133 lines
5 KiB
Bash
Executable file
133 lines
5 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Etherpad one-line installer.
|
|
#
|
|
# Usage:
|
|
# curl -fsSL https://raw.githubusercontent.com/ether/etherpad-lite/master/bin/installer.sh | sh
|
|
#
|
|
# Optional environment variables:
|
|
# ETHERPAD_DIR Directory to install into (default: ./etherpad-lite)
|
|
# ETHERPAD_BRANCH Branch / tag to clone (default: master)
|
|
# ETHERPAD_RUN If set to 1, start Etherpad after install
|
|
# NO_COLOR If set, disables coloured output
|
|
|
|
set -eu
|
|
|
|
# ---------- pretty output ----------
|
|
if [ -z "${NO_COLOR:-}" ] && [ -t 1 ]; then
|
|
bold=$(printf '\033[1m')
|
|
green=$(printf '\033[32m')
|
|
red=$(printf '\033[31m')
|
|
yellow=$(printf '\033[33m')
|
|
reset=$(printf '\033[0m')
|
|
else
|
|
bold=''; green=''; red=''; yellow=''; reset=''
|
|
fi
|
|
|
|
step() { printf '%s==>%s %s%s%s\n' "$green" "$reset" "$bold" "$*" "$reset"; }
|
|
warn() { printf '%s==>%s %s\n' "$yellow" "$reset" "$*" >&2; }
|
|
fatal() { printf '%s==>%s %s\n' "$red" "$reset" "$*" >&2; exit 1; }
|
|
|
|
is_cmd() { command -v "$1" >/dev/null 2>&1; }
|
|
|
|
# ---------- defaults ----------
|
|
ETHERPAD_DIR="${ETHERPAD_DIR:-etherpad-lite}"
|
|
ETHERPAD_BRANCH="${ETHERPAD_BRANCH:-master}"
|
|
ETHERPAD_REPO="${ETHERPAD_REPO:-https://github.com/ether/etherpad.git}"
|
|
REQUIRED_NODE_MAJOR=25
|
|
|
|
step "Etherpad installer"
|
|
|
|
# ---------- prerequisite checks ----------
|
|
is_cmd git || fatal "git is required but not installed. See https://git-scm.com/downloads"
|
|
|
|
if ! is_cmd node; then
|
|
fatal "Node.js is required (>= ${REQUIRED_NODE_MAJOR}). Install it from https://nodejs.org"
|
|
fi
|
|
|
|
NODE_MAJOR=$(node -p "process.versions.node.split('.')[0]")
|
|
if [ "$NODE_MAJOR" -lt "$REQUIRED_NODE_MAJOR" ]; then
|
|
fatal "Node.js >= ${REQUIRED_NODE_MAJOR} required. You have $(node --version)."
|
|
fi
|
|
|
|
if ! is_cmd pnpm; then
|
|
step "Installing pnpm globally"
|
|
is_cmd npm || fatal "npm not found. Install Node.js >= ${REQUIRED_NODE_MAJOR}."
|
|
if ! npm install -g pnpm 2>/dev/null; then
|
|
warn "Global npm install requires elevated permissions; retrying with sudo."
|
|
is_cmd sudo || fatal "sudo not available. Install pnpm manually: https://pnpm.io/installation"
|
|
sudo npm install -g pnpm || \
|
|
fatal "Failed to install pnpm. Install it manually: https://pnpm.io/installation"
|
|
fi
|
|
is_cmd pnpm || \
|
|
fatal "pnpm install reported success but pnpm is still not on PATH. Open a new shell and re-run."
|
|
fi
|
|
|
|
# ---------- clone ----------
|
|
if [ -d "$ETHERPAD_DIR" ]; then
|
|
if [ -d "$ETHERPAD_DIR/.git" ]; then
|
|
warn "$ETHERPAD_DIR already exists; updating to $ETHERPAD_BRANCH."
|
|
cd "$ETHERPAD_DIR" || fatal "Cannot cd into $ETHERPAD_DIR"
|
|
|
|
# Verify the existing checkout points at the expected remote.
|
|
EXISTING_REMOTE=$(git remote get-url origin 2>/dev/null || echo "")
|
|
if [ -n "$EXISTING_REMOTE" ] && [ "$EXISTING_REMOTE" != "$ETHERPAD_REPO" ]; then
|
|
fatal "$ETHERPAD_DIR is checked out from '$EXISTING_REMOTE', expected '$ETHERPAD_REPO'. Refusing to overwrite."
|
|
fi
|
|
|
|
# Refuse to clobber meaningful local changes. pnpm-lock.yaml is excluded
|
|
# because `pnpm i` rewrites it during installation, which would otherwise
|
|
# make every re-run of the installer fail.
|
|
DIRTY=$(git status --porcelain 2>/dev/null | awk '$2 != "pnpm-lock.yaml" {print}')
|
|
if [ -n "$DIRTY" ]; then
|
|
printf '%s\n' "$DIRTY" >&2
|
|
fatal "$ETHERPAD_DIR has uncommitted changes. Commit/stash them or remove the directory."
|
|
fi
|
|
|
|
git fetch --tags --prune origin || fatal "git fetch failed in $ETHERPAD_DIR"
|
|
|
|
# Discard any pnpm-lock.yaml changes from a prior pnpm install so the
|
|
# subsequent checkout doesn't refuse to overwrite local changes.
|
|
git checkout -- pnpm-lock.yaml 2>/dev/null || true
|
|
|
|
# Switch to the requested branch / tag and fast-forward to it.
|
|
if git show-ref --verify --quiet "refs/remotes/origin/$ETHERPAD_BRANCH"; then
|
|
git checkout -B "$ETHERPAD_BRANCH" "origin/$ETHERPAD_BRANCH" || \
|
|
fatal "git checkout $ETHERPAD_BRANCH failed"
|
|
elif git show-ref --verify --quiet "refs/tags/$ETHERPAD_BRANCH"; then
|
|
git checkout --detach "refs/tags/$ETHERPAD_BRANCH" || \
|
|
fatal "git checkout tag $ETHERPAD_BRANCH failed"
|
|
else
|
|
fatal "Branch or tag '$ETHERPAD_BRANCH' not found on origin."
|
|
fi
|
|
|
|
INSTALLED_REV=$(git rev-parse --short HEAD)
|
|
step "Updated $ETHERPAD_DIR to $ETHERPAD_BRANCH @ $INSTALLED_REV"
|
|
cd - >/dev/null || exit 1
|
|
else
|
|
fatal "$ETHERPAD_DIR exists and is not a git checkout. Aborting."
|
|
fi
|
|
else
|
|
step "Cloning Etherpad ($ETHERPAD_BRANCH) into $ETHERPAD_DIR"
|
|
git clone --depth 1 --branch "$ETHERPAD_BRANCH" "$ETHERPAD_REPO" "$ETHERPAD_DIR"
|
|
fi
|
|
|
|
cd "$ETHERPAD_DIR"
|
|
|
|
# ---------- install + build ----------
|
|
step "Installing dependencies (pnpm i)"
|
|
pnpm i
|
|
|
|
step "Building Etherpad (pnpm run build:etherpad)"
|
|
pnpm run build:etherpad
|
|
|
|
# ---------- done ----------
|
|
printf '\n%s🎉 Etherpad is installed in %s%s\n' "$green" "$ETHERPAD_DIR" "$reset"
|
|
printf 'To start Etherpad:\n'
|
|
printf ' cd %s && pnpm run prod\n' "$ETHERPAD_DIR"
|
|
printf 'Then open http://localhost:9001 in your browser.\n\n'
|
|
|
|
if [ "${ETHERPAD_RUN:-0}" = "1" ]; then
|
|
step "Starting Etherpad on http://localhost:9001"
|
|
exec pnpm run prod
|
|
fi
|