Skip to content
Open
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
2 changes: 1 addition & 1 deletion dream-server/installers/windows/install-windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Write-DreamBanner
# Phase 03 → $enableVoice, $enableWorkflows, $enableRag, $enableOpenClaw, $openClawConfig
# Phase 04 → $requirementsMet
# Phase 05 → $dockerComposeCmd
# Phase 06 → $envResult (EnvPath, SearxngSecret, OpenclawToken, DreamAgentKey)
# Phase 06 → $envResult (SearxngSecret, OpenclawToken)
# Phase 07 → (no output -- tools installed to $env:USERPROFILE)

. (Join-Path $PhasesDir "01-preflight.ps1")
Expand Down
2 changes: 0 additions & 2 deletions dream-server/installers/windows/lib/env-generator.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,8 @@ LANGFUSE_INIT_USER_PASSWORD=$langfuseInitUserPassword
}

return @{
EnvPath = $envPath
SearxngSecret = $searxngSecret
OpenclawToken = $openclawToken
DreamAgentKey = $dreamAgentKey
}
}

Expand Down
4 changes: 1 addition & 3 deletions dream-server/installers/windows/phases/06-directories.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# $openClawConfig -- from phase 03
#
# Writes:
# $envResult -- hashtable: EnvPath, SearxngSecret, OpenclawToken, DreamAgentKey
# $envResult -- hashtable: SearxngSecret, OpenclawToken
#
# Modder notes:
# Add new directories to $_dirs array below.
Expand All @@ -38,10 +38,8 @@ if ($dryRun) {
}
# Signal to later phases: no envResult in dry-run mode
$envResult = @{
EnvPath = Join-Path $installDir ".env"
SearxngSecret = "(dry-run-placeholder)"
OpenclawToken = "(dry-run-placeholder)"
DreamAgentKey = "(dry-run-placeholder)"
}
return
}
Expand Down
1 change: 0 additions & 1 deletion dream-server/installers/windows/phases/07-devtools.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
# $dryRun, $cloudMode -- from orchestrator context
# $installDir -- from orchestrator context
# $tierConfig -- from phase 02 (LlmModel, MaxContext, GgufFile)
# $envResult -- from phase 06 (OpenclawToken, DreamAgentKey)
# $script:OPENCODE_* -- from lib/constants.ps1
#
# Writes:
Expand Down
Loading