ash-project / igniter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support running non-installation Igniter tasks from the CLI

ibarakaiev opened this issue · comments

Is your feature request related to a problem? Please describe.
Some helper tasks might be implemented with Igniter tasks instead of regular Mix tasks, and it currently seems impossible to run something like mix igniter.run {task_name}. For example, :ash_money might have an Igniter install task and a add_to_ash_postgres Igniter task. It would currently be impossible to run the latter.

Describe the solution you'd like
Support mix igniter.run {task_name} or something like that.

I'm not sure I understand the issue. Any igniter task can be run on its own as a regular task. i.e mix {task_name}

They are both igniter tasks and their own mix tasks.

Got it—I mistakenly thought that the run function for Igniter tasks expects an existing igniter, but I just saw that it's being created there. Then the issue doesn't make sense, so closing!