Moved development scripts into a dev directory.

This can optionally and ideally be omitted from your deployment. Purely
for local development.
This commit is contained in:
2026-06-03 10:49:22 +02:00
parent 448228e3ad
commit f9652ffed7
2 changed files with 0 additions and 0 deletions
Executable
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
HOST="${HOST:-127.0.0.1}"
PORT="${PORT:-3333}"
echo "Starting development server..."
echo "URL: http://${HOST}:${PORT}"
php -S "${HOST}:${PORT}" index.php