tarinai/start_server.bat

6 lines
129 B
Batchfile
Raw Normal View History

2026-07-29 20:52:11 +09:00
@echo off
setlocal
set PORT=%~1
if "%PORT%"=="" set PORT=8000
cd /d "%~dp0"
php -S 127.0.0.1:%PORT% -t "%~dp0" "%~dp0router.php"