-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathrecipe-tool-workspace.code-workspace
More file actions
85 lines (84 loc) · 1.96 KB
/
recipe-tool-workspace.code-workspace
File metadata and controls
85 lines (84 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"folders": [
{
"name": "⚙️ Recipe Executor Core",
"path": "./recipe-executor"
},
{
"name": "🔧 Recipe Tool Core",
"path": "./recipe-tool"
},
{
"name": "📄 Recipes",
"path": "./recipes"
},
{
"name": "📐 Blueprints",
"path": "./blueprints"
},
{
"name": "📚 Documentation",
"path": "./docs"
},
{
"name": "🤖 AI Context",
"path": "./ai_context"
},
{
"name": "🖥️ Document Generator App",
"path": "./apps/document-generator"
},
{
"name": "🖥️ Document Generator App V1",
"path": "./apps/experimental/document-generator-v1"
},
{
"name": "🖥️ Recipe Executor App",
"path": "./apps/recipe-executor"
},
{
"name": "🖥️ Recipe Tool App",
"path": "./apps/recipe-tool"
},
{
"name": "🌐 Docs Server MCP",
"path": "mcp-servers/docs-server"
},
{
"name": "🌐 Python Code Tools MCP",
"path": "./mcp-servers/python-code-tools"
},
{
"name": "🌐 Recipe Tool MCP",
"path": "./mcp-servers/recipe-tool"
},
{
"name": "🛠️ Tools",
"path": "./tools"
},
{
"name": "🏠 Workspace Root",
"path": "."
}
],
"settings": {
// Inherit most settings from .vscode/settings.json
"python.defaultInterpreterPath": "./.venv/bin/python",
// Enable testing only for projects with working tests
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["--color=yes", "-v"],
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"python.testing.unittestEnabled": false,
"ruff.nativeServer": "on",
"ruff.configuration": "${workspaceFolder}/ruff.toml",
"cSpell.words": ["docpack"]
},
"extensions": {
"recommendations": [
"ms-python.python",
"charliermarsh.ruff",
"ms-python.debugpy",
"tamasfe.even-better-toml"
]
}
}