run migrations or pass flags to Elixir Burrito binary

Hi! I have built the elixir phoenix app inside burrito, everything works as it should. But I have encountered a situation where I need to:

  1. Create a base on the deployment machine
  2. Run migrations.
    I did it with ease when I have a release, like this:
    _build/prod/rel/agen/bin/agen eval “Agen.ReleaseTasks.create()”
    _build/prod/rel/agen/bin/agen eval “Agen.ReleaseTasks.migrate()”
    it works well, but when I try to do same things with burrito binary, it fails.

I just can’t find in internet - ways to pass flags to a binary file, any attempts simply lead to the application starting without reading flags and switch scenario. Any examples of chatGpt does not works.
Please help