honcho/api/.vscode/tasks.json

19 lines
333 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "start",
"type": "shell",
"command": "poetry run uvicorn src.main:app --reload",
"group": "none",
"presentation": {
"reveal": "always",
"panel": "shared"
},
"runOptions": {
"runOn": "folderOpen"
}
}
]
}