added tele debug config (wip)

This commit is contained in:
Dobromir Popov
2023-12-19 22:07:11 +02:00
parent 9435650d4f
commit 2a947d6c7c
3 changed files with 21 additions and 3 deletions

12
.vscode/launch.json vendored
View File

@ -10,6 +10,18 @@
"request": "launch",
"preLaunchTask": "docker-run: debug",
"platform": "node"
},
{
"name": "Docker Python Launch",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/agent-py-bot/agent.py",
"console": "integratedTerminal",
"pythonPath": "${command:python.interpreterPath}", // Assumes Python extension is installed
"preLaunchTask": "docker-run: python-debug", // You may need to create this task
"env": {
"PYTHONUNBUFFERED": "1"
}
}
]
}