Old Config to New Config Example

I struggled a bit this morning moving over to the new version.

So if it’s useful to anyone else here’s my old config compared to the required format of the new one.

Old Config:

[AppDaemon]
ha_url = http://192.168.1.10:8123
threads = 10
dash_dir = /home/server/appdae-hass/
dash_url = http://192.168.1.14:5050

New Config:

appdaemon:
  threads: '10'
  plugins:
    HASS:
      type: hass
      ha_url: http://192.168.1.10:8123

hadashboard:
  dashboard_dir: /home/server/appdae_hass/
  dash_url: http://192.168.1.14:5050

I also changed my dashboard folder name from appdae-hass to appdae_hass just in case - mightn’t be necessary.