Files
Auto_Bangumi/.vscode/launch.json
Sean 2e3e75bb0b refactor
- 区分 Consts 和 Settings,取代 Env
- 独立 downloader module,为便于后续提供多下载器支持
- 加入命令行选项,提供 debug 模式
- 其他细节
2022-06-02 15:15:21 +08:00

29 lines
922 B
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: 当前文件",
"type": "python",
"request": "launch",
"program": "${file}",
"cwd": "${workspaceFolder}/AutoBangumi/app",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: docker_main",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/AutoBangumi/app/app.py",
"args": [
"-d"
],
"cwd": "${workspaceFolder}/AutoBangumi/app",
"console": "integratedTerminal",
"justMyCode": true
}
]
}