frostfs-node/dev/.vscode-example/tasks.json
Dmitrii Stepanov 80d7f19ccf [#892] node: Add VSCode debug example
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
2023-12-29 15:24:08 +03:00

19 lines
No EOL
318 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "env-up",
"command": "make env-up",
"group": "build",
"detail": "Up debug environment"
},
{
"type": "shell",
"label": "env-down",
"command": "make env-down",
"group": "build",
"detail": "Down debug environment"
}
]
}