mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-09-10 21:18:42 -06:00
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"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": []
|
|
}
|
|
]
|
|
}
|