Skip to content

Instantly share code, notes, and snippets.

@syuntoku14
Created April 2, 2020 07:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save syuntoku14/8412f1e9ebd0db53d95c83ca9e61fa53 to your computer and use it in GitHub Desktop.
Save syuntoku14/8412f1e9ebd0db53d95c83ca9e61fa53 to your computer and use it in GitHub Desktop.
vscode_debug
{
// 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",
"port": 5678,
"host": "localhost",
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "."
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment