mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 00:52:16 -06:00
36 lines
891 B
JSON
36 lines
891 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run copyparty",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "copyparty",
|
|
"console": "integratedTerminal",
|
|
"cwd": "${workspaceFolder}",
|
|
"args": [
|
|
"-j",
|
|
"0",
|
|
"-nc",
|
|
"4",
|
|
//"-nw",
|
|
"-a",
|
|
"ed:wark",
|
|
"-v",
|
|
"/home/ed/inc:inc:r:aed"
|
|
]
|
|
},
|
|
{
|
|
"name": "Run active unit test",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "unittest",
|
|
"console": "integratedTerminal",
|
|
"cwd": "${workspaceFolder}",
|
|
"args": [
|
|
"-v",
|
|
"${file}"
|
|
]
|
|
},
|
|
]
|
|
} |