Files
hassio-addons/webtrees/rootfs/run
2021-10-20 21:39:03 +02:00

66 lines
2.0 KiB
Plaintext

#!/usr/bin/env bashio
##########
# BANNER #
##########
if bashio::supervisor.ping; then
bashio::log.blue \
'-----------------------------------------------------------'
bashio::log.blue " Add-on: $(bashio::addon.name)"
bashio::log.blue " $(bashio::addon.description)"
bashio::log.blue \
'-----------------------------------------------------------'
bashio::log.blue " Add-on version: $(bashio::addon.version)"
if bashio::var.true "$(bashio::addon.update_available)"; then
bashio::log.magenta ' There is an update available for this add-on!'
bashio::log.magenta \
" Latest add-on version: $(bashio::addon.version_latest)"
bashio::log.magenta ' Please consider upgrading as soon as possible.'
else
bashio::log.green ' You are running the latest version of this add-on.'
fi
bashio::log.blue " System: $(bashio::info.operating_system)" \
" ($(bashio::info.arch) / $(bashio::info.machine))"
bashio::log.blue " Home Assistant Core: $(bashio::info.homeassistant)"
bashio::log.blue " Home Assistant Supervisor: $(bashio::info.supervisor)"
bashio::log.blue \
'-----------------------------------------------------------'
bashio::log.blue \
' Please, share the above information when looking for help'
bashio::log.blue \
' or support in, e.g., GitHub, forums or the Discord chat.'
bashio::log.green \
' https://github.com/alexbelgium/hassio-addons'
bashio::log.blue \
'-----------------------------------------------------------'
fi
##################
# INITIAL CONFIG #
##################
export PRETTY_URLS=0
export LANG="en-US"
export BASE_URL="http://192.168.178.69:9999"
export DB_TYPE="sqlite"
export DB_HOST="http://127.0.0.1"
export DB_PORT="80"
export DB_USER="test"
export DB_PASS="test"
export DB_NAME="webtrees.sqlite"
export DB_PREFIX="wt_"
export WT_USER="username"
export WT_NAME="Full Name"
export WT_PASS= "mybadpassword"
export WT_EMAIL="me@example.com"
#############
# START APP #
#############
PRETTY_URLS_FILE=""