Added CLI Arguments for faster server and agent launching during development.

This commit is contained in:
2025-09-02 16:55:57 -06:00
parent d6fdcc944f
commit 9fa77b9e19
2 changed files with 113 additions and 29 deletions

47
.vscode/tasks.json vendored
View File

@@ -20,6 +20,51 @@
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Borealis - Server (Flask)",
"type": "shell",
"command": "powershell.exe",
"args": [
"-ExecutionPolicy", "Bypass",
"-File", "${workspaceFolder}/Borealis.ps1",
"-Server", "-Flask"
],
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Borealis - Server (Vite)",
"type": "shell",
"command": "powershell.exe",
"args": [
"-ExecutionPolicy", "Bypass",
"-File", "${workspaceFolder}/Borealis.ps1",
"-Server", "-Vite"
],
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Borealis - Agent",
"type": "shell",
"command": "powershell.exe",
"args": [
"-ExecutionPolicy", "Bypass",
"-File", "${workspaceFolder}/Borealis.ps1",
"-Agent"
],
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
}
]
}
}