Files
copyparty/.vscode/launch.json

52 lines
1.4 KiB
JSON
Raw Normal View History

2019-05-29 22:28:10 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Run copyparty",
"type": "python",
"request": "launch",
"module": "copyparty",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"args": [
2019-06-10 17:18:11 +00:00
//"-nw",
2020-11-27 03:22:41 +01:00
"-ed",
"-emp",
2021-02-20 04:59:43 +00:00
"-e2dsa",
2021-03-02 00:07:04 +01:00
"-e2ts",
"-mtp",
".bpm=f,bin/mtag/audio-bpm.py",
2021-06-11 23:01:13 +02:00
"-aed:wark",
2021-09-11 19:59:59 +02:00
"-vsrv::r:rw,ed:c,dupe",
2021-06-11 23:01:13 +02:00
"-vdist:dist:r"
2019-05-29 22:28:10 +00:00
]
},
2021-02-12 19:25:01 +01:00
{
"name": "No debug",
"preLaunchTask": "no_dbg",
"type": "python",
//"request": "attach", "port": 42069
// fork: nc -l 42069 </dev/null
},
2019-05-29 22:28:10 +00:00
{
"name": "Run active unit test",
"type": "python",
"request": "launch",
"module": "unittest",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"args": [
"-v",
"${file}"
]
},
2021-06-11 03:05:42 +02:00
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
},
2019-05-29 22:28:10 +00:00
]
}