Skip to content

nirantak/home-automation

Repository files navigation

Home Automation

Home automation tools and scripts

Setting Up

Python 3.8+ required

git clone [email protected]:nirantak/home-automation.git
cd home-automation
cp -nv .env.sample .env  # copy and update the env variables
python3 -m venv .venv
source .venv/bin/activate
pip install -U pip wheel setuptools
pip install -U -r requirements.txt
# To set up pre-commit hooks, required for contributing code, run:
pre-commit install --install-hooks --overwrite