Fixed VSCode Tasks and Simplified Borealis.ps1

This commit is contained in:
2025-11-07 20:02:31 -07:00
parent 80e7c1b6e2
commit dfdc9b4623
3 changed files with 16 additions and 118 deletions

57
.vscode/tasks.json vendored
View File

@@ -1,43 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Borealis - Legacy Server (Production)",
"type": "shell",
"command": "powershell.exe",
"args": [
"-ExecutionPolicy", "Bypass",
"-File", "${workspaceFolder}/Borealis.ps1",
"-Server", "-Flask"
],
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Borealis - Legacy Server (Dev)",
"type": "shell",
"command": "powershell.exe",
"args": [
"-ExecutionPolicy", "Bypass",
"-File", "${workspaceFolder}/Borealis.ps1",
"-Server", "-Vite"
],
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Borealis - Engine (Production)",
"type": "shell",
"command": "powershell.exe",
"args": [
"-NoLogo",
"-NoProfile",
"-ExecutionPolicy", "Bypass",
"-File", "${workspaceFolder}/Borealis.ps1",
"-File", "${workspaceFolder}\\Borealis.ps1",
"-EngineProduction"
],
"presentation": {
@@ -51,8 +23,10 @@
"type": "shell",
"command": "powershell.exe",
"args": [
"-NoLogo",
"-NoProfile",
"-ExecutionPolicy", "Bypass",
"-File", "${workspaceFolder}/Borealis.ps1",
"-File", "${workspaceFolder}\\Borealis.ps1",
"-EngineDev"
],
"presentation": {
@@ -65,27 +39,12 @@
"label": "Borealis - Agent",
"type": "shell",
"command": "powershell.exe",
"args": [
"-ExecutionPolicy", "Bypass",
"-File", "${workspaceFolder}/Borealis.ps1",
"-Agent"
],
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Borealis - Kill All Component Processes",
"type": "shell",
"command": "powershell.exe",
"args": [
"-NoLogo",
"-NoProfile",
"-ExecutionPolicy", "Bypass",
"-Command",
"taskkill.exe /IM node.exe /IM pythonw.exe /IM python.exe /F"
"-File", "${workspaceFolder}\\Borealis.ps1",
"-Agent"
],
"presentation": {
"reveal": "always",