Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion infra/scripts/hydrate-local-settings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 5 additions & 1 deletion infra/scripts/hydrate-local-settings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Loading