Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 518 Bytes

File metadata and controls

23 lines (16 loc) · 518 Bytes

Identicon

A program that creates Github Identicons based on the input. Built while learning to program in Elixir

Installation

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

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