mirror of
https://github.com/pdxlocations/contact.git
synced 2026-03-28 17:12:35 +01:00
23 lines
553 B
JSON
23 lines
553 B
JSON
{
|
|
"version": "0.1.0",
|
|
"configurations": [
|
|
|
|
{
|
|
"name": "Python Debugger: main",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"cwd": "${workspaceFolder}",
|
|
"module": "contact.__main__",
|
|
"args": []
|
|
},
|
|
{
|
|
"name": "Python Debugger: tcp",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"cwd": "${workspaceFolder}",
|
|
"module": "contact.__main__",
|
|
"args": ["--host","192.168.86.69"]
|
|
}
|
|
]
|
|
}
|