An Elixir App that will help generate an identity icon for the user given the username as a string.
If available in Hex, the package can be installed as:
- Add
identicon
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:identicon, "~> 0.1.0"}]
end
```
- Ensure
identicon
is started before your application:
```elixir
def application do
[applications: [:identicon]]
end
```