added build/run task

This commit is contained in:
John Lancaster
2025-11-30 13:14:10 -06:00
parent 85b3c5ee3f
commit 015725d2cc

18
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Docker Compose Up",
"type": "shell",
"problemMatcher": [],
"command": "docker compose up -d --build --force-recreate"
,
"presentation": {
"focus": true,
"panel": "dedicated"
}
}
]
}