Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 910 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 910 Bytes

Toolbelt

This is my toolbelt project.

Contribution

Useful commands:

Command Description
mix deps.get get dependencies
mix credo analyze code syntax
mix test --trace run tests
MIX_ENV=test mix coveralls.html test coverage
mix docs generate docs
MIX_ENV=prod mix escript.build generate script

Installation

If available in Hex, the package can be installed as:

  1. Add toolbelt to your list of dependencies in mix.exs:
def deps do
  [{:toolbelt, "~> 0.1.0"}]
end
  1. Ensure toolbelt is started before your application:
def application do
  [applications: [:toolbelt]]
end