Document local cloud startup and harden persistence

This commit is contained in:
Jacob Dubin
2026-05-25 00:30:41 -05:00
parent c36a01b142
commit 4e816e175a
17 changed files with 517 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
param(
[string]$ProjectPath = "src/Playground/Playground.csproj"
)
$ErrorActionPreference = "Stop"
$repoRoot = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot "..\.."))
$resolvedProjectPath = [System.IO.Path]::GetFullPath((Join-Path $repoRoot $ProjectPath))
if (-not (Test-Path -LiteralPath $resolvedProjectPath)) {
throw "Could not find Playground project at $resolvedProjectPath"
}
Write-Host "Starting OpenJibo Playground"
Write-Host " - project: $resolvedProjectPath"
Write-Host " - mode: direct local Jibo ASR/TTS client"
Write-Host ""
Write-Host "When prompted, enter the Jibo IP address on your local network."
dotnet run --project $resolvedProjectPath