Tandoor Rezeptdatenbank

Hallo,
ich möchte gerne die Tandoor Rezeptdatenbank integrieren. Wenn ich die Beschreibung richtig verstanden habe, kann ich diese über die lokale HA-Url mit einem anderen Port aufrufen. Benötigt wird hier ein secret key. Ist der für den Zugriff auf die DB? Wo muss ich den neben dem Add On noch konfigurieren?
Ich kann die externe Seite mit der Dokumentation des Add-On leider nicht verlinken. Nachstehend der YAML Code aus der Doku

Required :
    "ALLOWED_HOSTS": "your system url", # You need to input your homeassistant urls (comma separated, without space) to allow ingress to work
    "DB_TYPE": "list(sqlite|postgresql_external)" # Type of database to use.
    "SECRET_KEY": "str", # Your secret key
    "PORT": 9928 # By default, the webui is available on http://HAurl:9928. If you ever need to change the port, you should never do it within the app, but only through this option
    "Environment": 0|1 # 1 is debug mode, 0 is normal mode. You should run in normal mode unless actively developing.
    "GUNICORN_MEDIA": 0|1 # 1 enables gunicorn media hosting. This is not recommended. You should use an nginx server to host your media - see docs.
Optional :
    "POSTGRES_HOST": "str?", # Needed for postgresql_external
    "POSTGRES_PORT": "str?", # Needed for postgresql_external
    "POSTGRES_USER": "str?", # Needed for postgresql_external
    "POSTGRES_PASSWORD": "str?", # Needed for postgresql_external
    "POSTGRES_DB": "str?" # Needed for postgresql_external
    "externalfiles_folder": "str?" # a folder that you want to map in to tandoor. Not needed as /share/ and /media/ are mapped. This folder will be created if it doesn't already exist.