mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run copyparty",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "copyparty",
|
|
"console": "integratedTerminal",
|
|
"cwd": "${workspaceFolder}",
|
|
"args": [
|
|
//"-nw",
|
|
"-ed",
|
|
"-emp",
|
|
"-e2d",
|
|
"-e2s",
|
|
"-a",
|
|
"ed:wark",
|
|
"-v",
|
|
"srv::r:aed:cnodupe"
|
|
]
|
|
},
|
|
{
|
|
"name": "No debug",
|
|
"preLaunchTask": "no_dbg",
|
|
"type": "python",
|
|
//"request": "attach", "port": 42069
|
|
// fork: nc -l 42069 </dev/null
|
|
},
|
|
{
|
|
"name": "Run active unit test",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "unittest",
|
|
"console": "integratedTerminal",
|
|
"cwd": "${workspaceFolder}",
|
|
"args": [
|
|
"-v",
|
|
"${file}"
|
|
]
|
|
},
|
|
]
|
|
} |