mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-05-04 22:45:42 +08:00
- 区分 Consts 和 Settings,取代 Env - 独立 downloader module,为便于后续提供多下载器支持 - 加入命令行选项,提供 debug 模式 - 其他细节
29 lines
922 B
JSON
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
|
|
}
|
|
]
|
|
} |