mirror of
https://github.com/moghtech/komodo.git
synced 2026-07-10 12:01:56 -05:00
107 lines
2.0 KiB
JSON
107 lines
2.0 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "cargo",
|
|
"command": "build",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"label": "rust: cargo build"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "fmt",
|
|
"label": "rust: cargo fmt"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "check",
|
|
"label": "rust: cargo check"
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "run",
|
|
"label": "rust: cargo run",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/core"
|
|
}
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "run",
|
|
"label": "run core",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/core"
|
|
}
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "run",
|
|
"label": "run periphery",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/periphery"
|
|
}
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "run",
|
|
"label": "run cli",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/cli"
|
|
}
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "run",
|
|
"label": "run tests",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/tests"
|
|
}
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "publish",
|
|
"label": "publish monitor types",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/lib/types"
|
|
}
|
|
},
|
|
{
|
|
"type": "cargo",
|
|
"command": "publish",
|
|
"label": "publish monitor client",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/lib/monitor_client"
|
|
}
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "docker compose up -d",
|
|
"label": "docker compose up",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/tests"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "docker compose down",
|
|
"label": "docker compose down",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/tests"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"command": "docker compose build",
|
|
"label": "docker compose build",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/tests"
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |