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
identiconto your list of dependencies inmix.exs:
```elixir
def deps do
[{:identicon, "~> 0.1.0"}]
end
```
- Ensure
identiconis started before your application:
```elixir
def application do
[applications: [:identicon]]
end
```