spb/spboucher.ai Public
spboucher.ai — personal website of Simon-Pierre Boucher.
TypeScript 93.4%
HTML 5.5%
CSS 1%
1#!/bin/zsh2# start-production.sh3# spboucher.ai Web4# Author: Simon-Pierre Boucher5# Mail: contact@spboucher.ai67# Starts the production Next.js server on port 3100 (port 3000 is used by8# console.maclustr.io on node m2u64). Run under PM2 as process "spboucher".910export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH11cd "$(dirname "$0")/.."12exec npx next start -H 0.0.0.0 -p 310013