61 lines
1.8 KiB
JSON
61 lines
1.8 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [{
|
|
"name": "Python",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"stopOnEntry": false,
|
|
"python": "${command:python.interpreterPath}",
|
|
"program": "${workspaceRoot}/mfe.py",
|
|
"cwd": "${workspaceRoot}",
|
|
"env": {},
|
|
"envFile": "${workspaceRoot}/.env",
|
|
"console": "internalConsole",
|
|
"debugOptions": [
|
|
"RedirectOutput"
|
|
]
|
|
},
|
|
{
|
|
"name": "Integrated Terminal/Console",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"stopOnEntry": true,
|
|
"python": "${command:python.interpreterPath}",
|
|
"program": "${file}",
|
|
"cwd": "",
|
|
"console": "integratedTerminal",
|
|
"env": {},
|
|
"envFile": "${workspaceRoot}/.env",
|
|
"debugOptions": [
|
|
"WaitOnAbnormalExit",
|
|
"WaitOnNormalExit"
|
|
]
|
|
},
|
|
{
|
|
"name": "External Terminal/Console",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"stopOnEntry": true,
|
|
"python": "${command:python.interpreterPath}",
|
|
"program": "${file}",
|
|
"cwd": "",
|
|
"console": "externalTerminal",
|
|
"env": {},
|
|
"envFile": "${workspaceRoot}/.env",
|
|
"debugOptions": [
|
|
"WaitOnAbnormalExit",
|
|
"WaitOnNormalExit"
|
|
]
|
|
},
|
|
{
|
|
"name": "Attach (Remote Debug)",
|
|
"type": "python",
|
|
"request": "attach",
|
|
"localRoot": "${workspaceRoot}",
|
|
"remoteRoot": "${workspaceRoot}",
|
|
"port": 3000,
|
|
"secret": "my_secret",
|
|
"host": "localhost"
|
|
}
|
|
]
|
|
} |