Ascii art web is a web app that convert the input string to a graphical representation. Currently, the graphiacal representation includes standard, shadow and thinkertoy.
Ricky Adriell
kkamil
G.Orlandi
- Download docker
- Run the command below in the terminal while inside the repository ascii-art-web to build the docker
$ docker build -t ascii-art-web .
- Run the command below in the terminal while inside the repository ascii-art-web to run the docker
$ docker run -p 5500:5500 -it ascii-art-web
or
$ docker run -p 5500:5500 -d ascii-art-web
to run this container in detached mode (run it permanently in the background)
- Visit the localhost:5500
- Select the font of your choice
- Type the text you would like to convert
- Click the "Generate Art" button
- To clear the text input use the backspace key or click the clear button
Run the command below in the terminal to test the error handling, Post end points, Get end points, and Ascii Art function
$ go test .
or
$ go test -v