Initial commit.

This commit is contained in:
2026-05-29 09:28:30 +02:00
parent 17daa347f4
commit bbbe90458a
12 changed files with 151 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