mirror of
https://github.com/rangermix/TwitchDropsMiner.git
synced 2026-05-31 09:29:37 +00:00
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run Current File",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "Run App (INFO)",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "main.py",
|
|
"args": ["-vv"],
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "Run App (DEBUG)",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "main.py",
|
|
"args": ["-vvv"],
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "Run App (DEBUG+WS)",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "main.py",
|
|
"args": ["-vvv", "--debug-ws"],
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "Debug GUI",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "gui.py",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
]
|
|
}
|