mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
e7aa0a64c7
I seem to have exidentally search and replaced some needed glob.glob calls when adding dinamic log location, which should now be repaired. There also was a mysterious cbpi_dashboard_1.json appearing in the wrong folder which now inside the dashboard folder. I also figured out how to run tests locally, they should now respect the dynamic folder paths.
41 lines
No EOL
1.3 KiB
JSON
41 lines
No EOL
1.3 KiB
JSON
{
|
|
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
|
|
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
|
|
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
|
|
{
|
|
"name": "run CraftBeerPi4",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "run",
|
|
"args": ["--config-folder-path=./.devcontainer/cbpi-dev-config", "start"],
|
|
"preLaunchTask": "copy default cbpi config files if dev config files dont exist"
|
|
},
|
|
|
|
{
|
|
"name": "create CraftBeerPi4 plugin",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "run",
|
|
"args": ["--config-folder-path=./.devcontainer/cbpi-dev-config", "create"]
|
|
},
|
|
|
|
{
|
|
"name": "setup CraftBeerPi4: create config folder structure",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "run",
|
|
"args": ["--config-folder-path=./.devcontainer/cbpi-dev-config", "setup"]
|
|
},
|
|
|
|
{
|
|
"name": "run tests",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "pytest",
|
|
"args": ["tests"]
|
|
}
|
|
]
|
|
} |