mirror of
https://github.com/mivodev/mivo.git
synced 2026-01-26 05:25:42 +07:00
12 lines
294 B
Batchfile
12 lines
294 B
Batchfile
@echo off
|
|
echo Starting Mivo Remake Development Server...
|
|
echo.
|
|
echo Local: http://localhost:8000
|
|
echo Network URLs (Check below):
|
|
ipconfig | findstr "IPv4"
|
|
echo.
|
|
echo Server will start in 5 seconds...
|
|
echo Press Ctrl+C to stop.
|
|
timeout /t 5 >nul
|
|
php -S 0.0.0.0:8000 -t public public/index.php
|