feat: add task configuration for running Date Wizard

This commit is contained in:
2026-09-17 15:14:55 +02:00
parent 4766a7d525
commit 253b65d976
+32
View File
@@ -0,0 +1,32 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Date Wizard",
"type": "shell",
"command": "go",
"args": [
"run",
"."
],
"isBackground": true,
"problemMatcher": [],
"group": "build",
"statusbar": {
"hide": false,
"label": "Run Date Wizard",
"icon": {
"id": "play"
},
"color": "#6dff72",
"detail": "Running Date Wizard",
"running": {
"icon": {
"id": "gear~spin"
},
"backgroundColor": "statusBarItem.warningBackground"
}
}
}
]
}