#!/bin/zsh # start-production.sh # spboucher.ai Web # Author: Simon-Pierre Boucher # Mail: contact@spboucher.ai # Starts the production Next.js server on port 3100 (port 3000 is used by # console.maclustr.io on node m2u64). Run under PM2 as process "spboucher". export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH cd "$(dirname "$0")/.." exec npx next start -H 0.0.0.0 -p 3100