Files
core/script/setup
T

27 lines
428 B
Bash
Raw Normal View History

2020-07-17 18:27:46 +02:00
#!/usr/bin/env bash
# Setups the repository.
2015-09-17 00:35:26 -07:00
# Stop on errors
set -e
cd "$(dirname "$0")/.."
2020-06-25 11:34:47 -07:00
mkdir -p config
python3 -m venv venv
source venv/bin/activate
2015-09-17 00:35:26 -07:00
script/bootstrap
2019-07-30 16:59:12 -07:00
pre-commit install
2020-07-17 18:27:46 +02:00
python3 -m pip install -e . --constraint homeassistant/package_constraints.txt
2020-06-25 11:34:47 -07:00
hass --script ensure_config -c config
echo "
logger:
default: info
logs:
homeassistant.components.cloud: debug
" >> config/configuration.yaml