From 08dfdeedecad3d8de4fa8074a185fa6445d334de Mon Sep 17 00:00:00 2001 From: Paul Yuknewicz Date: Tue, 16 Jun 2026 13:56:34 -0700 Subject: [PATCH] Fix hydrate-local-settings next-step hint to match README workflow The script printed 'Run func start to start the host', which is incomplete and skips the actual local-run workflow documented in the README: azurite --silent --skipApiVersionCheck --location .azurite # terminal A uv run func start # terminal B uv run python chat.py # terminal C Updated both the bash and PowerShell variants to print the three-terminal block so users land on the working path without re-reading the README. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- infra/scripts/hydrate-local-settings.ps1 | 6 +++++- infra/scripts/hydrate-local-settings.sh | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/infra/scripts/hydrate-local-settings.ps1 b/infra/scripts/hydrate-local-settings.ps1 index b5a5c11..a03d5fb 100644 --- a/infra/scripts/hydrate-local-settings.ps1 +++ b/infra/scripts/hydrate-local-settings.ps1 @@ -78,4 +78,8 @@ $settings = [ordered]@{ $settings | ConvertTo-Json -Depth 5 | Set-Content -Path local.settings.json -Encoding UTF8 Write-Host "Wrote local.settings.json -- provider=foundry, model=$($envVars['FOUNDRY_MODEL'])" -Write-Host "Run 'func start' to start the host." +Write-Host "" +Write-Host "Next: run these in three separate terminals from the project root:" +Write-Host " azurite --silent --skipApiVersionCheck --location .azurite # terminal A" +Write-Host " uv run func start # terminal B" +Write-Host " uv run python chat.py # terminal C" diff --git a/infra/scripts/hydrate-local-settings.sh b/infra/scripts/hydrate-local-settings.sh index 13a9326..0660e7c 100755 --- a/infra/scripts/hydrate-local-settings.sh +++ b/infra/scripts/hydrate-local-settings.sh @@ -42,4 +42,8 @@ EOF chmod 600 local.settings.json echo "Wrote local.settings.json — provider=foundry, model=${FOUNDRY_MODEL}" -echo "Run 'func start' to start the host." +echo "" +echo "Next: run these in three separate terminals from the project root:" +echo " azurite --silent --skipApiVersionCheck --location .azurite # terminal A" +echo " uv run func start # terminal B" +echo " uv run python chat.py # terminal C"