mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
34 lines
965 B
Bash
Executable File
34 lines
965 B
Bash
Executable File
#!/command/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
#################
|
|
# INITALISATION #
|
|
#################
|
|
|
|
echo " "
|
|
|
|
# Check if alsa_card is provided
|
|
CONFIG_LOCATION="/config/config.yaml"
|
|
if bashio::config.true "homeassistant_microphone"; then
|
|
bashio::log.info "homeassistant_microphone option is selected. The audio card config value is set to 'default'. Set in the addon options to which this is set"
|
|
audio_card="default"
|
|
yq -iy ".realtime.audio.source = \"${audio_card}\"" "$CONFIG_LOCATION"
|
|
else
|
|
bashio::log.info "homeassistant_microphone option is not set, keeping audio source configured via the UI"
|
|
fi
|
|
|
|
########################
|
|
# CONFIGURE birdnet-go #
|
|
########################
|
|
|
|
bashio::log.info "Starting app..."
|
|
# shellcheck disable=SC2086
|
|
/usr/bin/entrypoint.sh birdnet-go realtime &
|
|
true
|
|
|
|
# Wait for app to become available to start nginx
|
|
bashio::net.wait_for 8080 localhost 900
|
|
bashio::log.info "Starting NGinx..."
|
|
exec nginx
|