1
0

Compare commits

...

11 Commits

8 changed files with 43 additions and 59 deletions

View File

@@ -58,15 +58,10 @@ Example add-on configuration:
{
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"port": 6052
"keyfile": "privkey.pem"
}
```
### Option: `port`
The port to start the dashboard server on. Default is 6052.
### Option: `ssl`
Enables/Disables encrypted SSL (HTTPS) connections to the web server of this add-on.

View File

@@ -42,6 +42,6 @@
"slug": "esphome-beta",
"startup": "application",
"url": "https://beta.esphome.io/",
"version": "1.13.0b2",
"version": "1.13.4",
"webui": "http://[HOST]:[PORT:6052]"
}

View File

@@ -58,15 +58,10 @@ Example add-on configuration:
{
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"port": 6052
"keyfile": "privkey.pem"
}
```
### Option: `port`
The port to start the dashboard server on. Default is 6052.
### Option: `ssl`
Enables/Disables encrypted SSL (HTTPS) connections to the web server of this add-on.

View File

@@ -1,10 +1,10 @@
{
"args": {},
"build_from": {
"aarch64": "esphome/esphome-hassio-base-aarch64:1.6.0",
"amd64": "esphome/esphome-hassio-base-amd64:1.6.0",
"armv7": "esphome/esphome-hassio-base-armv7:1.6.0",
"i386": "esphome/esphome-hassio-base-i386:1.6.0"
"aarch64": "esphome/esphome-hassio-base-aarch64:1.7.0",
"amd64": "esphome/esphome-hassio-base-amd64:1.7.0",
"armv7": "esphome/esphome-hassio-base-armv7:1.7.0",
"i386": "esphome/esphome-hassio-base-i386:1.7.0"
},
"squash": false
}

View File

@@ -58,15 +58,10 @@ Example add-on configuration:
{
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"port": 6052
"keyfile": "privkey.pem"
}
```
### Option: `port`
The port to start the dashboard server on. Default is 6052.
### Option: `ssl`
Enables/Disables encrypted SSL (HTTPS) connections to the web server of this add-on.

View File

@@ -1,43 +1,47 @@
{
"name": "ESPHome",
"version": "1.12.2",
"slug": "esphome",
"description": "ESPHome Hass.io add-on for intelligently managing all your ESP8266/ESP32 devices.",
"url": "https://esphome.io/",
"webui": "http://[HOST]:[PORT:6052]",
"startup": "application",
"arch": [
"amd64",
"armhf",
"i386"
"i386",
"armv7",
"aarch64"
],
"hassio_api": true,
"auth_api": true,
"auto_uart": true,
"boot": "auto",
"description": "ESPHome Hass.io add-on for intelligently managing all your ESP8266/ESP32 devices.",
"hassio_api": true,
"hassio_role": "default",
"homeassistant_api": false,
"host_network": true,
"boot": "auto",
"auto_uart": true,
"image": "esphome/esphome-hassio-{arch}",
"ingress": true,
"ingress_port": 0,
"map": [
"ssl",
"ssl:ro",
"config:rw"
],
"options": {
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"port": 6052
"name": "ESPHome",
"options": {},
"panel_icon": "mdi:chip",
"ports": {
"6052/tcp": null
},
"ports_description": {
"6052/tcp": "Web interface (Not required for Hass.io Ingress)"
},
"schema": {
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"port": "int",
"leave_front_door_open": "bool?",
"certfile": "str?",
"esphome_version": "str?",
"streamer_mode": "bool?",
"keyfile": "str?",
"leave_front_door_open": "bool?",
"relative_url": "str?",
"status_use_ping": "bool?"
"ssl": "bool?",
"status_use_ping": "bool?",
"streamer_mode": "bool?"
},
"image": "esphome/esphome-hassio-{arch}"
}
"slug": "esphome",
"startup": "application",
"url": "https://esphome.io/",
"version": "1.13.4",
"webui": "http://[HOST]:[PORT:6052]"
}

View File

@@ -58,15 +58,10 @@ Example add-on configuration:
{
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"port": 6052
"keyfile": "privkey.pem"
}
```
### Option: `port`
The port to start the dashboard server on. Default is 6052.
### Option: `ssl`
Enables/Disables encrypted SSL (HTTPS) connections to the web server of this add-on.

View File

@@ -39,7 +39,7 @@ base: &base
streamer_mode: bool?
relative_url: str?
status_use_ping: bool?
base_image: esphome/esphome-hassio-base-{arch}:1.6.0
base_image: esphome/esphome-hassio-base-{arch}:1.7.0
esphome-dev:
<<: *base
@@ -56,7 +56,7 @@ esphome-beta:
<<: *base
directory: esphome-beta
name: ESPHome (beta)
version: '1.13.0b2' # BETA
version: '1.13.4' # BETA
slug: esphome-beta
description: "Beta version of ESPHome Hass.io add-on."
url: https://beta.esphome.io/
@@ -67,7 +67,7 @@ esphome-stable:
<<: *base
directory: esphome
name: ESPHome
version: '1.12.2' # STABLE
version: '1.13.4' # STABLE
slug: esphome
description: "ESPHome Hass.io add-on for intelligently managing all your ESP8266/ESP32 devices."
image: esphome/esphome-hassio-{arch}