9 lines
178 B
Bash
9 lines
178 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -eu
|
||
|
|
|
||
|
|
APP_DIR=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)
|
||
|
|
cd "$APP_DIR"
|
||
|
|
export HOSTNAME=0.0.0.0
|
||
|
|
export PORT="${PORT:-9000}"
|
||
|
|
exec node .next/standalone/server.js
|