Add ability to specify a custom MQTT broker

This commit is contained in:
Adrian Jagielak
2025-10-13 18:54:03 +02:00
parent 4a3eb07464
commit b937f90340
4 changed files with 31 additions and 5 deletions

View File

@@ -11,6 +11,10 @@ export FH_PASSWORD=$(bashio::config 'fh_password')
export TP_USERNAME=$(bashio::config 'tp_username')
export TP_PASSWORD=$(bashio::config 'tp_password')
export TP_ALLOW_EMPTY=$(bashio::config 'tp_allow_empty')
export CUSTOM_MQTT_HOST=$(bashio::config 'custom_mqtt_host')
export CUSTOM_MQTT_PORT=$(bashio::config 'custom_mqtt_port')
export CUSTOM_MQTT_USER=$(bashio::config 'custom_mqtt_user')
export CUSTOM_MQTT_PWD=$(bashio::config 'custom_mqtt_pwd')
export DEMO_MODE=$(bashio::config 'demo_mode')
export SHOW_DEBUG_LOG=$(bashio::config 'show_debug_log')