mirror of
https://github.com/nicoverbruggen/ebook-fonts-showcase.git
synced 2026-04-02 02:20:08 +02:00
7 lines
146 B
Bash
Executable File
7 lines
146 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
PORT="${PORT:-8888}"
|
|
echo "Starting server on http://localhost:${PORT}"
|
|
php -S "0.0.0.0:${PORT}" -t public
|