1
0
Fork 0
onnx-web/.vscode/launch.json

21 lines
394 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Remote Attach",
"type": "python",
"request": "attach",
"connect": {
"host": "127.0.0.1",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/opt/onnx-web"
}
],
"justMyCode": true
}
]
}