mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
16 lines
No EOL
261 B
Bash
Executable file
16 lines
No EOL
261 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Switch to Node 20
|
|
export NVM_DIR="$HOME/.nvm"
|
|
source "$NVM_DIR/nvm.sh"
|
|
nvm use 20
|
|
|
|
# Install dependencies
|
|
pnpm install --frozen-lockfile
|
|
|
|
# Build the site
|
|
pnpm run build
|
|
|
|
# Reload processes via PM2
|
|
pm2 reload ecosystem.config.js |