I would like to move my automations from cryptic yml files to nice, testable elixir modules. Let's brew something...
- Get a running Home Assistant using docker.
docker run \
--name homeassistant \
--privileged \
--restart=unless-stopped \
-e TZ=Europe/Budapest \
-v $(pwd)/ha-config:/config \
--network=host \
ghcr.io/home-assistant/home-assistant:stable
- Go through the Onboarding process
docker start homeassistant
anddocker stop homeassistant
to manage the homeassistant instance- Start the app with
mix run --no-halt