Jacob Schmidt a8415eb1fd Add phone addon and wire UI events
- Introduce client phone addon, UI, and XEH handlers
- Route actor phone interaction to the new phone UI
- Add initial phone state, event handling, and persistence
2026-04-06 19:07:18 -05:00

16 lines
521 B
PowerShell

Write-Host "Building JS and CSS bundles..."
node tools/concat-all.js
Write-Host "Starting local server..."
$pythonCommand = "python -m http.server"
try {
Start-Process python -ArgumentList "-m", "http.server" -NoNewWindow
Write-Host "Server started! Opening browser..."
Start-Sleep -Seconds 1
Start-Process "http://localhost:8000"
} catch {
Write-Host "Error starting server. Make sure Python is installed."
Write-Host "You can install Python from: https://www.python.org/downloads/"
pause
}