Execute and control OS processes from Elixir.
An idiomatic Elixir wrapper for Serge Aleynikov's excellent erlexec, Exexec provides an Elixir interface as well as some nice Elixir-y goodies on top.
-
Add exexec to your list of dependencies in
mix.exs
:def deps do [{:exexec, "~> 0.1"}] end
-
Ensure exexec and erlexec are started before your application:
def application do [applications: [:erlexec, :exexec]] end