I run in a dockerized environment, and am just starting with the HAD. I already got tired of docker restart
each time I changed something.
I installed inotify-tools on my linux box:
sudo apt install inotify-tools
and now have a script:
#!/bin/sh
cd /home/jamie/had-conf
while inotifywait -qqre modify "./dashboards/"
do
echo "Change detected"
docker rm -f appdaemon
docker run --name=appdaemon -d -p 5050:5050 --volume /home/jamie/had-conf:/conf myappdaemon
done
I enabled a samba share, and now I just save the dashboard and it automagically restarts for me.
There might be an easier way, but this works