DEVELOPMENT ENVIRONMENT

~liljamo/ha-ouman-eh800

ref: acecc4e6d726c28c36dd661392994982b81a9741 ha-ouman-eh800/justfile -rw-r--r-- 355 bytes
acecc4e6Jonni Liljamo fix: make sure test hass is latest stable 4 days ago
                                                                                
1
2
3
4
5
6
7
8
9
_default:
    just --list

hass-demo:
    podman pull homeassistant/home-assistant:stable
    podman run --rm --name hass-demo -p 8123:8123 -v ${PWD}/.hass_dev:/config -v ${PWD}/custom_components:/config/custom_components --cap-add=CAP_NET_RAW,CAP_NET_BIND_SERVICE homeassistant/home-assistant:stable

hass-demo-attach:
    podman exec -it hass-demo bash