* HA 2024.2.b4 * Add temp entities initialization * Python12 env rebuild * Init temperature number for central configuration + testus ok * With calculation of VTherm temp entities + test ok * FIX some testus. Some others are still KO * Beers * Update central config Number temp entity * Many but not all testus ok * All testus ok * With central config temp change ok * Cleaning and fixing Issues * Validation tests ok * With new menu. Testus KO * All developped and tests ok * Fix central_config menu * Documentation and release * Fix testus KO * Add log into migration for testu --------- Co-authored-by: Jean-Marc Collin <jean-marc.collin-extern@renault.com>
33 lines
969 B
Bash
Executable File
33 lines
969 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
cd "$(dirname "$0")/.."
|
|
pwd
|
|
|
|
# Create config dir if not present
|
|
if [[ ! -d "${PWD}/config" ]]; then
|
|
mkdir -p "${PWD}/config"
|
|
# Add defaults configuration
|
|
hass --config "${PWD}/config" --script ensure_config
|
|
fi
|
|
|
|
# Overwrite configuration.yaml if provided
|
|
if [ -f ${PWD}/.devcontainer/configuration.yaml ]; then
|
|
rm -f ${PWD}/config/configuration.yaml
|
|
ln -s ${PWD}/.devcontainer/configuration.yaml ${PWD}/config/configuration.yaml
|
|
fi
|
|
|
|
# Set the path to custom_components
|
|
## This let's us have the structure we want <root>/custom_components/integration_blueprint
|
|
## while at the same time have Home Assistant configuration inside <root>/config
|
|
## without resulting to symlinks.
|
|
export PYTHONPATH="${PYTHONPATH}:${PWD}/custom_components"
|
|
|
|
## Link custom_components into config
|
|
# rm -f ${PWD}/config/custom_components
|
|
# ln -s ${PWD}/custom_components ${PWD}/config/
|
|
|
|
# Start Home Assistant
|
|
hass --config "${PWD}/config" --debug |