9 lines
178 B
Bash
Executable File
9 lines
178 B
Bash
Executable File
#!/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
|