mirror of
https://github.com/esphome/esphome.git
synced 2025-02-13 16:38:18 +00:00
15 lines
544 B
Plaintext
Executable File
15 lines
544 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
# ==============================================================================
|
|
# Community Hass.io Add-ons: esphomeyaml
|
|
# Runs the esphomeyaml dashboard
|
|
# ==============================================================================
|
|
# shellcheck disable=SC1091
|
|
source /usr/lib/hassio-addons/base.sh
|
|
|
|
if hass.config.true 'leave_front_door_open'; then
|
|
export DISABLE_HA_AUTHENTICATION=true
|
|
fi
|
|
|
|
hass.log.info "Starting esphomeyaml dashboard..."
|
|
exec esphomeyaml /config/esphomeyaml dashboard --port 80 --hassio
|