BRE/webapi/.vscode/launch.json

67 lines
1.8 KiB
JSON
Raw Normal View History

2024-06-07 19:50:21 +03:00
{
// 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": "Exporter",
"type": "python",
"request": "launch",
"program": "exporter.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"test.ini"
]
},
{
"name": "Menu",
"type": "python",
"request": "launch",
"program": "menu.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Add metadata",
"type": "python",
"request": "launch",
"program": "run_metadata.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"test.ini",
"input.xlsx",
"breAccessK3y"
]
},
{
"name": "Add cardslots",
"type": "python",
"request": "launch",
"program": "run_cardslot.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"test.ini",
"input.xlsx",
"breAccessK3y"
]
},
{
"name": "Existence check",
"type": "python",
"request": "launch",
"program": "run_cardslot.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"test.ini",
"input.xlsx",
"breAccessK3y",
"-c"
]
}
]
}