Files
tiles/scripts/serve.ps1
Oli Passey b63d094c70 init
2026-02-21 17:31:10 +00:00

9 lines
297 B
PowerShell

$python = Get-Command python -ErrorAction SilentlyContinue
if (-not $python) {
Write-Host "Python not found. Open index.html directly in a browser." -ForegroundColor Yellow
exit 1
}
Write-Host "Starting local server at http://localhost:8000" -ForegroundColor Green
python -m http.server 8000