No automation/scripts editor in Web GUI | 0.57.3 | Rpi | VirtEnv

Hello,

I am pretty sure I have everything set up correctly following this tutorial: Automation editor - Home Assistant and Script Syntax - Home Assistant
But still I cannot see a tab saying automation/script/configuration in the left side panel.

configuration.yaml

[...]
switch: !include switches.yaml
script: !include scripts.yaml
automation: !include automations.yaml
sensor: !include sensors.yaml
[...]

Filenames are corrrect since other automations which I put in automations.yaml (same directory as configuration.yaml) are loaded correctly. I gave every old (importoted from older config) automation an id. Example:

[...]
  - id: test_aldshfsahd9fsaf
    alias: 'Lamps on when at home'
    trigger:
      platform: zone
      entity_id: device_tracker.s6
      zone: zone.home
      event: enter
    condition:
      condition: sun
      after: sunset
      # Optional offset value
#      after_offset: "-1:00:00"
    action:
      service: mqtt.publish
      data:
        topic: "switch/rf/2"
        payload: "1|11111|11000"

[...]

For testing I made a backuo of automations.yaml and added an empty one. Still no side panel.
I even installed hass.io on my Rpi. There the side panel showed up correctly.

Any ideas?

Thank you.

edit
Solution

Add

config:

to the top level of your configuration.yaml and restart HA.