started tasks

This commit is contained in:
John Lancaster
2026-06-21 18:15:56 -05:00
parent 1f7e63267a
commit d3b336f1e3
+67
View File
@@ -0,0 +1,67 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Ruff: Check",
"type": "shell",
"command": "uv",
"args": ["run", "ruff", "check", "."],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "Ty: Check",
"type": "shell",
"command": "uv",
"args": ["run", "ty", "check"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "Docs: Build",
"type": "shell",
"command": "uv",
"args": ["run", "zensical", "build"],
"options": {
"cwd": "${workspaceFolder}"
},
"group": "build",
"problemMatcher": []
},
{
"label": "Server: Run (uvicorn)",
"type": "shell",
"command": "uv",
"args": [
"run",
"uvicorn",
"personal_mcp.main:app",
"--host",
"127.0.0.1",
"--port",
"8000",
"--reload"
],
"options": {
"cwd": "${workspaceFolder}"
},
"isBackground": true,
"problemMatcher": []
},
{
"label": "Docker: Compose Up (Build)",
"type": "shell",
"command": "docker",
"args": ["compose", "up", "--build"],
"options": {
"cwd": "${workspaceFolder}"
},
"isBackground": true,
"problemMatcher": []
}
]
}