29 lines
715 B
JSON
29 lines
715 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python: Debug",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/main.py",
|
|
"console": "integratedTerminal",
|
|
// "env": {
|
|
// "PYTHONPATH": "."
|
|
// }
|
|
},
|
|
{
|
|
"name": "Python: Remote Attach",
|
|
"type": "python",
|
|
"request": "attach",
|
|
"port": 5678,
|
|
"host": "localhost",
|
|
"pathMappings": [
|
|
{
|
|
"localRoot": "${workspaceFolder}",
|
|
"remoteRoot": "."
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|