mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
990a2e85bf
Implement support for GitHub codespaces and VSCode devcontainers --------- Co-authored-by: timothycarambat <rambat1010@gmail.com> Co-authored-by: Sean Hatfield <seanhatfield5@gmail.com>
95 lines
2.4 KiB
JSON
95 lines
2.4 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/collector",
|
|
"statusbar": {
|
|
"color": "#ffea00",
|
|
"detail": "Runs the collector",
|
|
"label": "Collector: $(play) run",
|
|
"running": {
|
|
"color": "#ffea00",
|
|
"label": "Collector: $(gear~spin) running"
|
|
}
|
|
}
|
|
},
|
|
"command": "cd ${workspaceFolder}/collector/ && yarn dev",
|
|
"runOptions": {
|
|
"instanceLimit": 1,
|
|
"reevaluateOnRerun": true
|
|
},
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": true,
|
|
"clear": false
|
|
},
|
|
"label": "Collector: run"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/server",
|
|
"statusbar": {
|
|
"color": "#ffea00",
|
|
"detail": "Runs the server",
|
|
"label": "Server: $(play) run",
|
|
"running": {
|
|
"color": "#ffea00",
|
|
"label": "Server: $(gear~spin) running"
|
|
}
|
|
}
|
|
},
|
|
"command": "cd ${workspaceFolder}/server/ && yarn dev",
|
|
"runOptions": {
|
|
"instanceLimit": 1,
|
|
"reevaluateOnRerun": true
|
|
},
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": true,
|
|
"clear": false
|
|
},
|
|
"label": "Server: run"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/frontend",
|
|
"statusbar": {
|
|
"color": "#ffea00",
|
|
"detail": "Runs the frontend",
|
|
"label": "Frontend: $(play) run",
|
|
"running": {
|
|
"color": "#ffea00",
|
|
"label": "Frontend: $(gear~spin) running"
|
|
}
|
|
}
|
|
},
|
|
"command": "cd ${workspaceFolder}/frontend/ && yarn dev",
|
|
"runOptions": {
|
|
"instanceLimit": 1,
|
|
"reevaluateOnRerun": true
|
|
},
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"showReuseMessage": true,
|
|
"clear": false
|
|
},
|
|
"label": "Frontend: run"
|
|
}
|
|
]
|
|
}
|