61 lines
1.8 KiB
PowerShell
61 lines
1.8 KiB
PowerShell
# run_web_chrome.ps1 — Run Sojorn in Chrome browser
|
|
# Usage: .\run_web_chrome.ps1 [-Port 8002] [-EnvPath .env]
|
|
param(
|
|
[string]$EnvPath = (Join-Path $PSScriptRoot ".env"),
|
|
[int]$Port = 8002
|
|
)
|
|
|
|
function Parse-Env($path) {
|
|
$vals = @{}
|
|
if (-not (Test-Path $path)) {
|
|
Write-Host "No .env file found at ${path}. Using defaults." -ForegroundColor Yellow
|
|
$vals['API_BASE_URL'] = 'https://api.sojorn.net/api/v1'
|
|
return $vals
|
|
}
|
|
Get-Content $path | ForEach-Object {
|
|
$line = $_.Trim()
|
|
if ($line.Length -eq 0 -or $line.StartsWith('#')) { return }
|
|
$parts = $line -split '=', 2
|
|
if ($parts.Count -lt 2) { return }
|
|
$key = $parts[0].Trim()
|
|
$value = $parts[1].Trim()
|
|
if ($value.StartsWith('"') -and $value.EndsWith('"')) {
|
|
$value = $value.Substring(1, $value.Length - 2)
|
|
}
|
|
$vals[$key] = $value
|
|
}
|
|
return $vals
|
|
}
|
|
|
|
$values = Parse-Env $EnvPath
|
|
|
|
$defineArgs = @()
|
|
$keysOfInterest = @('API_BASE_URL', 'FIREBASE_WEB_VAPID_KEY', 'TURNSTILE_SITE_KEY')
|
|
foreach ($k in $keysOfInterest) {
|
|
if ($values.ContainsKey($k) -and -not [string]::IsNullOrWhiteSpace($values[$k])) {
|
|
$defineArgs += "--dart-define=$k=$($values[$k])"
|
|
}
|
|
}
|
|
|
|
if (-not $values.ContainsKey('API_BASE_URL') -or [string]::IsNullOrWhiteSpace($values['API_BASE_URL'])) {
|
|
$currentApi = 'https://api.sojorn.net/api/v1'
|
|
$defineArgs += "--dart-define=API_BASE_URL=$currentApi"
|
|
} else {
|
|
$currentApi = $values['API_BASE_URL']
|
|
}
|
|
|
|
Write-Host "Launching Sojorn Web (Chrome)..." -ForegroundColor Cyan
|
|
Write-Host "Port: $Port | API: $currentApi"
|
|
|
|
Push-Location (Join-Path $PSScriptRoot -ChildPath "sojorn_app")
|
|
try {
|
|
$cmdArgs = @('run', '-d', 'chrome', '--web-hostname', 'localhost', '--web-port', "$Port")
|
|
$cmdArgs += $defineArgs
|
|
|
|
Write-Host "Running: flutter $($cmdArgs -join ' ')" -ForegroundColor DarkGray
|
|
& flutter $cmdArgs
|
|
}
|
|
finally {
|
|
Pop-Location
|
|
}
|