48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "MQTT: Watch 'homeassistant/#'",
|
|
"type": "shell",
|
|
"command": "mosquitto_sub -h mosquitto -v -t \"homeassistant/#\"",
|
|
"group": "none",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "View Log: Mosquitto",
|
|
"type": "shell",
|
|
"command": "tail -F deployments/mosquitto/log/mosquitto.log",
|
|
"group": "none",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "dedicated",
|
|
"showReuseMessage": true,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "View Log: Home Assistant",
|
|
"type": "shell",
|
|
"command": "tail -F deployments/home-assistant/config/home-assistant.log",
|
|
"group": "none",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "dedicated",
|
|
"showReuseMessage": true,
|
|
"clear": false
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |