tarinai/start_server.sh
2026-07-29 20:52:11 +09:00

5 lines
156 B
Bash

#!/usr/bin/env sh
set -eu
PORT="${1:-8000}"
ROOT=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
exec php -S "127.0.0.1:${PORT}" -t "$ROOT" "$ROOT/router.php"