2024-11-01 10:43:51 +01:00
|
|
|
#!/usr/bin/with-contenv bashio
|
|
|
|
|
|
2024-11-30 17:28:55 +01:00
|
|
|
bashio::addon.config
|
|
|
|
|
echo ""
|
|
|
|
|
bashio::addon.ingress_port
|
|
|
|
|
echo ""
|
|
|
|
|
|
2024-11-01 10:43:51 +01:00
|
|
|
home-assistant-matter-hub start \
|
2024-11-28 20:46:56 +01:00
|
|
|
--log-level=$(bashio::config 'app_log_level') \
|
2024-11-01 10:43:51 +01:00
|
|
|
--disable-log-colors=$(bashio::config 'disable_log_colors') \
|
|
|
|
|
--storage-location=/config/data \
|
2024-11-28 20:46:56 +01:00
|
|
|
--web-port=$(bashio::addon.ingress_port) \
|
2024-11-01 10:43:51 +01:00
|
|
|
--home-assistant-url='http://supervisor/core' \
|
2024-11-30 09:21:36 +00:00
|
|
|
--home-assistant-access-token="$SUPERVISOR_TOKEN" \
|
|
|
|
|
--http-ip-whitelist="172.30.32.2"
|