c52bc9b737
Added a dev/ folder which will hold all the needed files for local development.
9 lines
192 B
Bash
Executable File
9 lines
192 B
Bash
Executable File
#!/usr/bin/env bash
|
|
HOST="${HOST:-127.0.0.1}"
|
|
PORT="${PORT:-3333}"
|
|
|
|
echo "Starting development server..."
|
|
echo "URL: http://${HOST}:${PORT}"
|
|
|
|
php -S "${HOST}:${PORT}" -t public dev/server.php
|