75 lines
2.4 KiB
JSON
75 lines
2.4 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
|
|
{
|
|
"name": "Python Debugger: Current File",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal"
|
|
},
|
|
|
|
{
|
|
"name": "Python: Current Module",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"console": "integratedTerminal",
|
|
"module": "kotonebot.debug_entry",
|
|
"args": [
|
|
"${relativeFile}"
|
|
],
|
|
// "module": "${command:extension.commandvariable.file.relativeDirDots}.${fileBasenameNoExtension}",
|
|
},
|
|
|
|
{
|
|
"name": "Python: Current Module(Without context)",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"console": "integratedTerminal",
|
|
"module": "${command:extension.commandvariable.file.relativeDirDots}.${fileBasenameNoExtension}",
|
|
},
|
|
|
|
{
|
|
"name": "KotonebotDebug: Current Module",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"console": "integratedTerminal",
|
|
"module": "kotonebot.backend.debug.entry",
|
|
"args": [
|
|
"-s",
|
|
"${workspaceFolder}/dumps",
|
|
"-c",
|
|
"${command:extension.commandvariable.file.relativeDirDots}.${fileBasenameNoExtension}",
|
|
"-t",
|
|
"kotonebot.tasks.common.BaseConfig"
|
|
]
|
|
},
|
|
{
|
|
"name": "KotonebotDebug: All tasks",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"console": "integratedTerminal",
|
|
"module": "kotonebot.backend.debug.entry",
|
|
"args": [
|
|
"-s",
|
|
"${workspaceFolder}/dumps",
|
|
"-c",
|
|
"kotonebot.run.run",
|
|
"-t",
|
|
"kotonebot.tasks.common.BaseConfig"
|
|
]
|
|
},
|
|
{
|
|
"name": "KotonebotDebug: Run Debug Server",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"console": "integratedTerminal",
|
|
"module": "kotonebot.backend.debug.server",
|
|
"args": []
|
|
},
|
|
]
|
|
} |