1
0
Fork 0

add debug config

This commit is contained in:
Sean Sube 2023-03-26 08:27:44 -05:00
parent 95a61f3573
commit 8c3c0de5d0
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 24 additions and 0 deletions

24
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,24 @@
{
// 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: Remote Attach",
"type": "python",
"request": "attach",
"connect": {
"host": "127.0.0.1",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/opt/onnx-web"
}
],
"justMyCode": true
}
]
}