mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-16 11:25:48 -07:00
98 lines
2.3 KiB
JSON
98 lines
2.3 KiB
JSON
{
|
|
"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": [
|
|
"-ExecutionPolicy", "Bypass",
|
|
"-File", "${workspaceFolder}/Borealis.ps1",
|
|
"-EngineProduction"
|
|
],
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "shared"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Borealis - Engine (Dev)",
|
|
"type": "shell",
|
|
"command": "powershell.exe",
|
|
"args": [
|
|
"-ExecutionPolicy", "Bypass",
|
|
"-File", "${workspaceFolder}/Borealis.ps1",
|
|
"-EngineDev"
|
|
],
|
|
"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": []
|
|
},
|
|
{
|
|
"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"
|
|
],
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "shared"
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|