Mix task to start only certain applications?

You can use:

$ mix run --no-start -e "{:ok, _} = Application.ensure_all_started(:foo)"

To start only one application. Just remember to add --no-halt if you run it outside of IEx.

1 Like