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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"version": "2.0.0",
"tasks": [
// ========================================
// 前端构建任务
// ========================================
{
"label": "构建前端",
"type": "shell",
"command": "pnpm",
"args": ["build"],
"options": {
"cwd": "${workspaceFolder}/frontend"
},
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false,
"group": "build"
}
},
{
"label": "启动前端开发服务器",
"type": "shell",
"command": "pnpm",
"args": ["dev"],
"options": {
"cwd": "${workspaceFolder}/frontend"
},
"isBackground": true,
"problemMatcher": {
"pattern": {
"regexp": "^$",
"file": 1,
"location": 2,
"message": 3
},
"background": {
"activeOnStart": true,
"beginsPattern": "VITE.*ready in",
"endsPattern": "Local:.*http://localhost:5173"
}
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": false,
"clear": false,
"group": "dev"
}
},
{
"label": "安装前端依赖",
"type": "shell",
"command": "pnpm",
"args": ["install"],
"options": {
"cwd": "${workspaceFolder}/frontend"
},
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false,
"group": "setup"
}
},
// ========================================
// Python 环境任务
// ========================================
{
"label": "安装 Python 依赖(uv)",
"type": "shell",
"command": "uv",
"args": ["sync"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false,
"group": "setup"
}
},
{
"label": "检查 Python 代码格式",
"type": "shell",
"command": "python",
"args": ["-m", "black", "--check", "backend/"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false,
"group": "check"
}
},
// ========================================
// 清理任务
// ========================================
{
"label": "清理构建产物",
"type": "shell",
"command": "powershell",
"args": [
"-Command",
"Remove-Item -Recurse -Force -ErrorAction SilentlyContinue frontend/dist, backend/__pycache__, backend/**/__pycache__"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false,
"group": "clean"
}
}
]
}