1
0
Fork 0

feat(build): add additional launch configs for vscode

This commit is contained in:
Sean Sube 2024-03-03 15:38:51 -06:00
parent cdf6f46f04
commit f80a7bbb83
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 18 additions and 0 deletions

18
.vscode/launch.json vendored
View File

@ -1,6 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"args": ["--name", "outpaint"],
"console": "integratedTerminal"
},
{
"name": "Python: Remote Attach",
"type": "python",
@ -16,6 +24,16 @@
}
],
"justMyCode": false
},
{
"name": "Python: Local Attach",
"type": "python",
"request": "attach",
"connect": {
"host": "127.0.0.1",
"port": 5679
},
"justMyCode": false
}
]
}