mix: add page (#1714)

coverage
Starbeamrainbowlabs 2017-12-01 09:46:37 +00:00 committed by GitHub
commit 7e03529f7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

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`