Add a way for the application to dump inventory data into a file

This commit is contained in:
DevilXD
2024-06-30 12:01:03 +02:00
parent 6d258efe41
commit f5d5fc3a05
7 changed files with 55 additions and 24 deletions

27
.vscode/launch.json vendored
View File

@@ -11,24 +11,6 @@
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Run App (INFO)",
"type": "python",
"request": "launch",
"program": "main.py",
"args": ["-vv"],
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Run App (INFO+Tray)",
"type": "python",
"request": "launch",
"program": "main.py",
"args": ["-vv", "--tray"],
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Run App (CALL)",
"type": "python",
@@ -38,6 +20,15 @@
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Run App (DUMP)",
"type": "python",
"request": "launch",
"program": "main.py",
"args": ["--dump"],
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Run App (DEBUG+WS)",
"type": "python",