This commit is contained in:
33333-33333 2026-08-08 17:41:30 +09:00
commit 1a3ba56d9a
123 changed files with 16018 additions and 9153 deletions

7
scripts/start_server.bat Normal file
View file

@ -0,0 +1,7 @@
@echo off
setlocal
set PORT=%~1
if "%PORT%"=="" set PORT=8000
for %%I in ("%~dp0..") do set "ROOT=%%~fI"
cd /d "%ROOT%"
php -S 127.0.0.1:%PORT% -t "%ROOT%" "%~dp0router.php"