mix: add page (#1714)

This commit is contained in:
Starbeamrainbowlabs
2017-12-01 09:46:37 +00:00
committed by GitHub

23
pages/common/mix.md Normal file
View File

@@ -0,0 +1,23 @@
# mix
> Mix is a build tool that provides tasks for creating, compiling, and testing Elixir projects, managing its dependencies, and more.
- Execute a particular file:
`mix run {{my_script.exs}}`
- Create a new project:
`mix new {{project_name}}`
- Compile project:
`mix compile`
- Run project tests:
`mix test`
- List all mix commands:
`mix help`