
This Elixir application generates 5x5 identicons for a given string.
The basis for this app is from Udemy course The Complete Elixir and Phoenix Bootcamp.
I have made some changes and have enabled running this app from the CLI using escript
.
- Clone this repostitory locally and
cd
into the newly created directory - Run
mix deps.get
- (Optional) Run
mix docs
to generate documentation for this application.
To generate identicons, run the following in your terminal while in the main directory of this project.
./identicon some_string
some_string
is whatever combination of characters you would like to generate identicon for!
You can find your newly generated identicon in the images/
directory at ./images/<some_string>.png
.