diff --git a/.vscode/launch.json b/.vscode/launch.json index e56b5bf..4bd63e7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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 + } + } + ] +}