mirror of
https://github.com/Mintplex-Labs/anything-llm
synced 2026-04-25 17:15:37 +02:00
devcontainer v1 (#297)
Implement support for GitHub codespaces and VSCode devcontainers --------- Co-authored-by: timothycarambat <rambat1010@gmail.com> Co-authored-by: Sean Hatfield <seanhatfield5@gmail.com>
This commit is contained in:
committed by
GitHub
parent
5172bceec3
commit
990a2e85bf
94
.vscode/tasks.json
vendored
Normal file
94
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,94 @@
|
||||
{
|
||||
// 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user