7 lines
157 B
Bash
7 lines
157 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
# shellcheck disable=SC1091
|
||
|
|
source "$(dirname "$0")/pm2-common.sh"
|
||
|
|
|
||
|
|
PORT="${PORT:-3000}"
|
||
|
|
exec npx next start -p "$PORT"
|