LinuxCommandLibrary

mix

mix

TLDR

Execute a particular file

$ mix run [my_script.exs]
copy


Create a new project
$ mix new [project_name]
copy


Compile project
$ mix compile
copy


Run project tests
$ mix test
copy


List all mix commands
$ mix help
copy

Copied to clipboard