1
0
mirror of https://github.com/elisspace/core.git synced 2026-08-30 08:02:02 +00:00
Files
core/script/setup
2020-06-25 11:34:47 -07:00

27 lines
409 B
Bash
Executable File

#!/bin/bash
# Setups the repository.
# Stop on errors
set -e
cd "$(dirname "$0")/.."
mkdir -p config
python3 -m venv venv
source venv/bin/activate
script/bootstrap
pre-commit install
pip install -e . --constraint homeassistant/package_constraints.txt
hass --script ensure_config -c config
echo "
logger:
default: info
logs:
homeassistant.components.cloud: debug
" >> config/configuration.yaml