chore: add web toolchain and infrastructure for Plan 3

This commit is contained in:
Keith Solomon
2026-07-06 17:22:46 -05:00
parent 17782aab33
commit eed678e688
8 changed files with 59 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
// Front controller. The router and handler dispatch land in Task 13.
// For now this returns a 200 with a stub so the dev server is reachable.
http_response_code(200);
header('Content-Type: text/plain; charset=utf-8');
echo "BattleForge dev server up.\n";