Skip to content

kellerza/hass-addons

Repository files navigation

Home Assistant add-ons by @kellerza

Open your Home Assistant instance and add the kellerza/hass-addons URL

This repository contains various Home Assistant add-ons

Development

You can test the addon locally by cloning the repository and running it in a Python 3.13+ virtual environment.

Requirements: uv. uv can be used to install Python and the required dependencies in a virtual environment.

When you run it on your local machine, it will use config from <working-dir>/.data/options.yaml. As a starting point you can copy the config under the options: key from config.yaml

Monitor logs from ssh

ssh homeassistant.local

while :
do
    docker logs -f --tail 50 addon_local_hass-addon-qsusb64
    echo "Press Ctrl+C to exit"
    sleep 0.5
done