Creating a project tree:
mix new <project name>
Running tests:
mix test
Run Elixir exression in context of your appplication
mix run -e 'Issues.CLI.run(["-h"])'
Run IEX and run mix before:
iex -S mix
List the dependencies and their status
mix deps
Download the dependencies:
mix depts.get
Make elixir app a command line script
mix escript.build
./issues elixir-lang elixir3