Created
May 29, 2019 02:39
-
-
Save chrismckinnel/64f653497deb7366405d250bc05622cb to your computer and use it in GitHub Desktop.
Visual code debugging config for Python attaching to a running process
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "SAM CLI Python Hello World", | |
"type": "python", | |
"request": "attach", | |
"port": 5890, | |
"host": "127.0.0.1", | |
"pathMappings": [ | |
{ | |
"localRoot": "${workspaceFolder}/hello_world", | |
"remoteRoot": "/var/task" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment