Define initial entities issue

Good afternoon to everybody!
I am newbie and trying to run the first app, which is provided in documentation (simple-app-tutorial), but code asks me about initial entities, which he doesn’t know where are they. But, if I jump into the code, there is workable links to this files. If somebody already have been stacked with this?



Hi, this is indeed a mistake in the tutorial(s). We will update this asap.

To fix your issue, please use the following as app.init file:

from .logo_folder.controller import LogoFolder
from .logo.controller import Logo

from viktor import InitialEntity

initial_entities = [
    InitialEntity('LogoFolder', name='Logos')
]