f3d16d5187
Build pipeline (scripts/build-hikes.ts) parses per-hike GPX, encodes images via sharp, reverse-geocodes the centroid against Swisstopo and emits a typed manifest under src/lib/data/hikes.generated.ts (gitignored). Track JSON + image binaries live outside /static; served in dev by a small hike-images plugin in vite.config.ts, in prod by nginx (private/ images proxied through Node + X-Accel-Redirect for auth-gating). /hikes overview: full-bleed Swisstopo hero map (HikesOverviewMap) sits under the sticky nav, drawing one polyline per route coloured by SAC tier (T1 yellow Wegweiser, T2/T3 white-red-white, T4-T6 white-blue- white). Click navigates, hover thickens + tooltips. Layer toggle, recenter, GPS controls mirror the detail map (minus images toggle). Cards drop the trail SVG, gain a per-route icon + SAC marker pictogram on the cover, altitude range, season label, and "Neu" badge for recently-published hikes. Filter bar + totals strip recompute over the currently-visible set. /hikes/[slug]: hero map with elevation profile, photo strip with map sync, scroll-position pin, GPX download, SAC marker stats + min/max altitude + season. Route-builder (/hikes/route-builder): client-side draft persisted to localStorage, EXIF-driven image placement, snap-to-route via BRouter (OSRM + linear fallback) and Swisstopo profile.json elevation enrichment that handles degenerate same-coord segments via the height endpoint. Filter init switched from a script-time snapshot of data.hikes (which sporadically returned a one-hike subset during dev hydration and locked the page to that single hike) to a post-mount \$effect. Content under src/content/hikes/ intentionally not included (WIP).
114 lines
3.9 KiB
Bash
Executable File
114 lines
3.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build locally and rsync artifacts to the production server.
|
|
# Avoids running pnpm / npm / any git-hosted prepare step on the server.
|
|
#
|
|
# Assumes:
|
|
# - Local machine matches the server's arch + libc (linux-x64-glibc).
|
|
# - Local Node major version matches the server's.
|
|
# - Root SSH to $REMOTE works (key-based).
|
|
#
|
|
# Usage: scripts/deploy.sh [--dry-run]
|
|
|
|
set -euo pipefail
|
|
|
|
REMOTE="${REMOTE:-root@bocken.org}"
|
|
REMOTE_DIR="${REMOTE_DIR:-/usr/share/webapps/homepage}"
|
|
REMOTE_USER_GROUP="${REMOTE_USER_GROUP:-homepage:homepage}"
|
|
SERVICE="${SERVICE:-homepage.service}"
|
|
ERROR_PAGES_DIR="${ERROR_PAGES_DIR:-/var/www/errors}"
|
|
ERROR_PAGES_OWNER="${ERROR_PAGES_OWNER:-http:http}"
|
|
# Hike images live outside the Node app: nginx serves /hikes/<slug>/images/
|
|
# directly from disk and gates /hikes/<slug>/private/ through Node via
|
|
# X-Accel-Redirect. The build pipeline writes them to ./hikes-assets/ and we
|
|
# rsync that tree to the path nginx serves from.
|
|
HIKES_ASSETS_DIR="${HIKES_ASSETS_DIR:-/var/www/static/hikes}"
|
|
HIKES_ASSETS_OWNER="${HIKES_ASSETS_OWNER:-http:http}"
|
|
|
|
DRY=""
|
|
if [[ "${1:-}" == "--dry-run" ]]; then
|
|
DRY="--dry-run"
|
|
echo ":: DRY RUN — no files will be transferred"
|
|
fi
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo ":: Sanity-checking local/remote toolchain parity"
|
|
local_node=$(node --version)
|
|
remote_node=$(ssh "$REMOTE" 'node --version')
|
|
if [[ "${local_node%%.*}" != "${remote_node%%.*}" ]]; then
|
|
echo "!! Node major mismatch: local $local_node vs remote $remote_node"
|
|
echo " Native modules (sharp, onnxruntime, bson) may break. Aborting."
|
|
exit 1
|
|
fi
|
|
echo " node $local_node (match)"
|
|
|
|
echo ":: Installing deps (frozen lockfile)"
|
|
pnpm install --frozen-lockfile
|
|
|
|
echo ":: Building"
|
|
pnpm build
|
|
|
|
if [[ ! -d build ]]; then
|
|
echo "!! build/ not produced — aborting"
|
|
exit 1
|
|
fi
|
|
|
|
# The server's systemd unit runs from $REMOTE_DIR/dist, so map build → dist.
|
|
echo ":: Syncing build/ → $REMOTE:$REMOTE_DIR/dist/"
|
|
rsync -az --delete $DRY --info=progress2 \
|
|
build/ "$REMOTE:$REMOTE_DIR/dist/"
|
|
|
|
echo ":: Syncing node_modules/ → $REMOTE:$REMOTE_DIR/node_modules/"
|
|
rsync -az --delete $DRY --info=progress2 \
|
|
node_modules/ "$REMOTE:$REMOTE_DIR/node_modules/"
|
|
|
|
echo ":: Syncing static/ → $REMOTE:$REMOTE_DIR/static/"
|
|
rsync -az --delete $DRY --info=progress2 \
|
|
static/ "$REMOTE:$REMOTE_DIR/static/"
|
|
|
|
echo ":: Syncing package.json + pnpm-lock.yaml"
|
|
rsync -az $DRY \
|
|
package.json pnpm-lock.yaml "$REMOTE:$REMOTE_DIR/"
|
|
|
|
if [[ ! -d build/client/errors ]]; then
|
|
echo "!! build/client/errors not produced — postbuild error-page step did not run"
|
|
exit 1
|
|
fi
|
|
|
|
echo ":: Syncing error pages → $REMOTE:$ERROR_PAGES_DIR/"
|
|
ssh "$REMOTE" "mkdir -p $ERROR_PAGES_DIR"
|
|
rsync -az --delete $DRY --info=progress2 \
|
|
build/client/errors/ "$REMOTE:$ERROR_PAGES_DIR/"
|
|
|
|
if [[ -d hikes-assets ]]; then
|
|
echo ":: Syncing hikes-assets/ → $REMOTE:$HIKES_ASSETS_DIR/"
|
|
ssh "$REMOTE" "mkdir -p $HIKES_ASSETS_DIR"
|
|
rsync -az --delete $DRY --info=progress2 \
|
|
hikes-assets/ "$REMOTE:$HIKES_ASSETS_DIR/"
|
|
else
|
|
echo ":: No hikes-assets/ dir — skipping nginx-served hike images sync"
|
|
fi
|
|
|
|
if [[ -n "$DRY" ]]; then
|
|
echo ":: Dry run complete — no service restart"
|
|
exit 0
|
|
fi
|
|
|
|
echo ":: Fixing ownership on server"
|
|
ssh "$REMOTE" "chown -R $REMOTE_USER_GROUP $REMOTE_DIR/dist $REMOTE_DIR/node_modules $REMOTE_DIR/static $REMOTE_DIR/package.json $REMOTE_DIR/pnpm-lock.yaml && chown -R $ERROR_PAGES_OWNER $ERROR_PAGES_DIR && if [[ -d $HIKES_ASSETS_DIR ]]; then chown -R $HIKES_ASSETS_OWNER $HIKES_ASSETS_DIR; fi"
|
|
|
|
echo ":: Restarting $SERVICE"
|
|
ssh "$REMOTE" "systemctl restart $SERVICE"
|
|
|
|
echo ":: Verifying service is active"
|
|
sleep 2
|
|
if ssh "$REMOTE" "systemctl is-active --quiet $SERVICE"; then
|
|
echo " $SERVICE is running"
|
|
else
|
|
echo "!! $SERVICE failed to start — check logs:"
|
|
ssh "$REMOTE" "journalctl -u $SERVICE -n 30 --no-pager"
|
|
exit 1
|
|
fi
|
|
|
|
echo ":: Deploy complete"
|