mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-16 03:25:48 -07:00
Fixed VSCode Tasks and Simplified Borealis.ps1
This commit is contained in:
57
.vscode/tasks.json
vendored
57
.vscode/tasks.json
vendored
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user