2020-03-22 23:39:37 +00:00
|
|
|
#!/usr/bin/with-contenv bashio
|
|
|
|
# ==============================================================================
|
|
|
|
# Start Home Assistant service
|
|
|
|
# ==============================================================================
|
|
|
|
|
2020-06-02 23:08:50 +00:00
|
|
|
cd /config || bashio::exit.nok "Can't find config folder!"
|
2020-03-25 09:14:15 +00:00
|
|
|
|
2021-04-26 20:19:40 +00:00
|
|
|
# Enable mimalloc for Home Assistant Core, unless disabled
|
2021-04-28 16:03:21 +00:00
|
|
|
if [[ -z "${DISABLE_JEMALLOC+x}" ]]; then
|
|
|
|
export LD_PRELOAD="/usr/local/lib/libjemalloc.so.2"
|
2020-06-02 23:08:50 +00:00
|
|
|
fi
|
2020-03-22 23:39:37 +00:00
|
|
|
exec python3 -m homeassistant --config /config
|