mirror of
https://github.com/adrianjagielak/home-assistant-futurehome.git
synced 2025-10-13 07:42:06 -06:00
14 lines
485 B
Plaintext
14 lines
485 B
Plaintext
|
#!/usr/bin/with-contenv bashio
|
||
|
# ==============================================================================
|
||
|
# s6-overlay docs: https://github.com/just-containers/s6-overlay
|
||
|
# ==============================================================================
|
||
|
|
||
|
set -e
|
||
|
|
||
|
export FH_HUB_IP=$(bashio::config 'hub_ip')
|
||
|
export FH_USERNAME=$(bashio::config 'username')
|
||
|
export FH_PASSWORD=$(bashio::config 'password')
|
||
|
export LOG_LEVEL=${LOG_LEVEL:-info}
|
||
|
|
||
|
/usr/bin/node /usr/src/app/dist/index.js
|