mirror of https://github.com/home-assistant/core
48 lines
1.0 KiB
Bash
Executable File
48 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Setups the repository.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Add default vscode settings if not existing
|
|
SETTINGS_FILE=./.vscode/settings.json
|
|
SETTINGS_TEMPLATE_FILE=./.vscode/settings.default.json
|
|
if [ ! -f "$SETTINGS_FILE" ]; then
|
|
echo "Copy $SETTINGS_TEMPLATE_FILE to $SETTINGS_FILE."
|
|
cp "$SETTINGS_TEMPLATE_FILE" "$SETTINGS_FILE"
|
|
fi
|
|
|
|
mkdir -p config
|
|
|
|
if [ ! -n "$VIRTUAL_ENV" ]; then
|
|
if [ -x "$(command -v uv)" ]; then
|
|
uv venv venv
|
|
else
|
|
python3 -m venv venv
|
|
fi
|
|
source venv/bin/activate
|
|
fi
|
|
|
|
if ! [ -x "$(command -v uv)" ]; then
|
|
python3 -m pip install uv
|
|
fi
|
|
|
|
script/bootstrap
|
|
|
|
pre-commit install
|
|
uv pip install -e . --config-settings editable_mode=compat --constraint homeassistant/package_constraints.txt
|
|
python3 -m script.translations develop --all
|
|
|
|
hass --script ensure_config -c config
|
|
|
|
if ! grep -R "logger" config/configuration.yaml >> /dev/null;then
|
|
echo "
|
|
logger:
|
|
default: info
|
|
logs:
|
|
homeassistant.components.cloud: debug
|
|
" >> config/configuration.yaml
|
|
fi
|