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:
- Create a base on the deployment machine
- 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