snippetbashTip
mix — Build tool that provides tasks for creating, compiling, and testing Elixir projects, managing its de
Viewed 0 times
providescommandbuildclitoolthattasksmix
Problem
How to use the
mix command: Build tool that provides tasks for creating, compiling, and testing Elixir projects, managing its dependencies, and more. More information: <https://hexdocs.pm/mix/index.html>.Solution
mix — Build tool that provides tasks for creating, compiling, and testing Elixir projects, managing its dependencies, and more. More information: <https://hexdocs.pm/mix/index.html>.Execute a particular file:
mix run {{my_script.exs}}Create a new project:
mix new {{project_name}}Compile project:
mix compileRun project tests:
mix testDisplay help:
mix helpCode Snippets
Execute a particular file
mix run {{my_script.exs}}Create a new project
mix new {{project_name}}Compile project
mix compileRun project tests
mix testDisplay help
mix helpContext
tldr-pages: common/mix
Revisions (0)
No revisions yet.