dewpoint_ventilation/.zed/tasks.json

33 lines
881 B
JSON
Raw Normal View History

2024-12-29 20:00:41 +01:00
// Static tasks configuration.
//
// Example:
[
2025-01-03 12:43:14 +01:00
{
"label": "esphome build",
"command": "podman run --rm -it -v .:/config ghcr.io/esphome/esphome compile dewpoint.yaml",
"use_new_terminal": false,
"allow_concurrent_runs": false,
"reveal": "always",
"hide": "never",
"shell": "system"
},
2024-12-29 20:00:41 +01:00
{
"label": "esphome run wifi",
"command": "podman run --rm -it -v .:/config ghcr.io/esphome/esphome run dewpoint.yaml",
"use_new_terminal": false,
"allow_concurrent_runs": false,
"reveal": "always",
"hide": "never",
"shell": "system"
},
{
"label": "esphome run serial",
"command": "podman run --rm -it --device=/dev/ttyUSB0 -v .:/config ghcr.io/esphome/esphome run dewpoint.yaml",
"use_new_terminal": false,
"allow_concurrent_runs": false,
"reveal": "always",
"hide": "never",
"shell": "system"
}
]