Add VSCode task configuration for Dev Dashboard

This commit is contained in:
Sean Whalen
2026-04-05 18:11:36 -04:00
parent 69eee9f1dc
commit 8f7ffb648c
+15
View File
@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Dev Dashboard: Up",
"type": "shell",
"command": "docker compose -f docker-compose.dashboard-dev.yml up -d",
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}