Open
Description
Command
mix
Description
Mix is a build tool that provides tasks for creating, compiling, and testing Elixir projects, managing its dependencies, and more.
Homepage
https://hexdocs.pm/mix/Mix.html
Documentation
https://hexdocs.pm/mix/Mix.html
Repository
https://github.com/elixir-lang/elixir
Complexity
M
Anything else?
build-in tasks
mix help <task>
- app.config # Configures all registered apps
- app.start # Starts all registered apps
- app.tree # Prints the application tree
- archive # Lists installed archives
- archive.build # Archives this project into a .ez file
- archive.install # Installs an archive locally
- archive.uninstall # Uninstalls archives
- clean # Deletes generated application files
- cmd # Executes the given command
- compile # Compiles source files
- deps # Lists dependencies and their status
- deps.clean # Deletes the given dependencies' files
- deps.compile # Compiles dependencies
- deps.get # Gets all out of date dependencies
- deps.tree # Prints the dependency tree
- deps.unlock # Unlocks the given dependencies
- deps.update # Updates the given dependencies
- do # Executes the tasks separated by plus
- escript # Lists installed escripts
- escript.build # Builds an escript for the project
- escript.install # Installs an escript locally
- escript.uninstall # Uninstalls escripts
- eval # Evaluates the given code
- format # Formats the given files/patterns
- help # Prints help information for tasks
- loadconfig # Loads and persists the given configuration
- local # Lists tasks installed locally via archives
- local.hex # Installs Hex locally
- local.public_keys # Manages public keys
- local.rebar # Installs Rebar locally
- new # Creates a new Elixir project
- profile.cprof # Profiles the given file or expression with cprof
- profile.eprof # Profiles the given file or expression with eprof
- profile.fprof # Profiles the given file or expression with fprof
- profile.tprof # Profiles the given file or expression with tprof
- release # Assembles a self-contained release
- release.init # Generates sample files for releases
- run # Runs the current application
- test # Runs a project's tests
- test.coverage # Build report from exported test coverage
- xref # Prints cross reference information