From 44489c56d643ea1ab7b512cb84b09cbf24339b0f Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Sun, 4 May 2025 22:02:01 -0600 Subject: [PATCH] Labeled Electron Support as Experimental --- Borealis.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Borealis.ps1 b/Borealis.ps1 index 096c77d..b8c5991 100644 --- a/Borealis.ps1 +++ b/Borealis.ps1 @@ -89,9 +89,9 @@ Write-Host "Workflow Automation Tool" -ForegroundColor Blue Write-Host "====================================================================================" Write-Host " " Write-Host "Please choose which function you want to launch / (re)deploy:" -Write-Host "1) Borealis Server" -Write-Host "2) Borealis Agent" -Write-Host "3) Build Electron App" +Write-Host " 1) Borealis Server" +Write-Host " 2) Borealis Agent" +Write-Host " 3) Build Electron App [Unfinished / Experimental]" $choice = Read-Host "Type a number and press [ENTER]" switch ($choice) { @@ -101,7 +101,7 @@ switch ($choice) { Write-Host "Configure Borealis Server Mode:" -ForegroundColor Yellow Write-Host " 1) Build & Launch > [Static] Production Flask Server @ http://localhost:5000" Write-Host " 2) Launch [Skip Build] > [Static] Production Flask Server @ http://localhost:5000" - Write-Host " 3) Launch [Skip Build] > [Hotload-Enabled] Vite Dev Server @ http://localhost:5173" + Write-Host " 3) Launch > [Hotload-Enabled] Vite Dev Server @ http://localhost:5173" $modeChoice = Read-Host "Enter choice [1/2/3]" switch ($modeChoice) {