Beracles commited on
Commit
748d0f6
·
1 Parent(s): cb2bc0e

新增launch.json配置文件以支持Python调试

Browse files
Files changed (1) hide show
  1. .vscode/launch.json +15 -0
.vscode/launch.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ // 使用 IntelliSense 了解相关属性。
3
+ // 悬停以查看现有属性的描述。
4
+ // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "Python 调试程序: 模块",
9
+ "type": "debugpy",
10
+ "request": "launch",
11
+ "module": "http.server",
12
+ "args": ["8000"]
13
+ }
14
+ ]
15
+ }