Files
thechart/.vscode/tasks.json
William Valentin ce986db27b
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
feat: Update DataManager to support new quetiapine medication format and adjust VSCode task command
2025-07-29 14:00:33 -07:00

20 lines
327 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run TheChart App",
"type": "shell",
"command": "/home/will/Code/thechart/.venv/bin/python",
"args": [
"src/main.py"
],
"options": {
"cwd": "/home/will/Code/thechart"
},
"group": "build",
"isBackground": false,
"problemMatcher": []
}
]
}