Skip to content

Commit 327f17e

Browse files
Merge pull request #29 from SamMorrowDrums/chore/dev-experience
chore: add VS Code tasks for workshop dev loop
2 parents edb70e3 + 9994251 commit 327f17e

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.vscode/tasks.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Run (stdio)",
6+
"type": "shell",
7+
"command": "uv run mcp-python-starter --stdio",
8+
"group": "test"
9+
},
10+
{
11+
"label": "Run (HTTP)",
12+
"type": "shell",
13+
"command": "uv run mcp-python-starter --http",
14+
"group": "test"
15+
},
16+
{
17+
"label": "Lint",
18+
"type": "shell",
19+
"command": "uv run ruff check mcp_starter/",
20+
"group": {
21+
"kind": "build",
22+
"isDefault": true
23+
}
24+
},
25+
{
26+
"label": "Test",
27+
"type": "shell",
28+
"command": "uv run pytest",
29+
"group": "test"
30+
}
31+
]
32+
}

0 commit comments

Comments
 (0)