Skip to content

Commit

Permalink
wrap host and port inside connect object
Browse files Browse the repository at this point in the history
  • Loading branch information
smanga24 committed Jan 17, 2025
1 parent 92dee72 commit 40824c8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,20 @@ Create launch.json file inside .vscode directory
"configurations": [
{
"name": "Python: Remote Attach (DebugPy)",
"type": "python",
"type": "debugpy",
"request": "attach",
"port": 5678,
"host": "localhost",
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app/"
}
],
"justMyCode": true
},
}
]
}

0 comments on commit 40824c8

Please sign in to comment.