mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
45 lines
No EOL
1.4 KiB
JSON
45 lines
No EOL
1.4 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",
|
|
"--debug-log-level=20",
|
|
"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"]
|
|
}
|
|
]
|
|
} |