Files

32 lines
978 B
JSON
Raw Permalink Normal View History

2026-06-10 10:23:00 +05:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Run vikunja-notifier debug build",
"type": "shell",
"command": "task deployments:localdev:vikunja-notifier:down; task deployments:localdev:vikunja-notifier:up-debug",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
// Do not open terminal every time debug is launched.
"reveal": "silent"
}
},
{
"label": "Stop vikunja-notifier debug build",
"type": "shell",
"command": "task deployments:localdev:vikunja-notifier:down-debug",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
// Do not open terminal every time debug is launched.
"reveal": "silent"
}
}
]
}