Skip to content

Commit

Permalink
Merge pull request #54 from bento-platform/chore/update-vscode-debugp…
Browse files Browse the repository at this point in the history
…y-json

chore: update VS code debugpy launch file
  • Loading branch information
davidlougheed authored Mar 20, 2024
2 parents 62a8b8c + 82c6256 commit 0f808cc
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
// 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": "Attach Debugger",
"type": "python",
"request": "attach",
"port": 5684,
"host": "0.0.0.0",
"justMyCode": true,
},
{
"name": "Fed. + dep. - Attach Debugger",
"type": "python",
"request": "attach",
"port": 5684,
"host": "0.0.0.0",
"justMyCode": false,
},
]
}
"version": "0.2.0",
"configurations": [
{
"name": "Attach Debugger",
"type": "debugpy",
"request": "attach",
"justMyCode": true,
"connect": {
"host": "0.0.0.0",
"port": 5684
}
},
{
"name": "Fed. + dep. - Attach Debugger",
"type": "debugpy",
"request": "attach",
"justMyCode": false,
"connect": {
"host": "0.0.0.0",
"port": 5684
}
}
]
}

0 comments on commit 0f808cc

Please sign in to comment.