pygateway/.vscode/launch.json
2025-03-16 22:59:25 +03:00

25 lines
887 B
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": "111",
"type": "debugpy",
"request": "launch",
"program": "poetry run python -m pygateway -l 12345 -rh 127.0.0.1 -rp 8000",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/pygateway/__main__.py",
"console": "integratedTerminal",
"args": ["-l", "12345", "-rh", "127.0.0.1", "-rp", "9000"],
"justMyCode": true
}
]
}