https://github.com/anatolethien/ascii-art-web
Complete web application that allows users to convert text into an ascii-art representation of that text.
https://github.com/anatolethien/ascii-art-web
ascii-art figlet
Last synced: 5 months ago
JSON representation
Complete web application that allows users to convert text into an ascii-art representation of that text.
- Host: GitHub
- URL: https://github.com/anatolethien/ascii-art-web
- Owner: anatolethien
- Created: 2021-01-18T13:45:09.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-02-07T17:39:23.000Z (over 4 years ago)
- Last Synced: 2024-06-21T15:43:41.883Z (almost 2 years ago)
- Topics: ascii-art, figlet
- Language: HTML
- Homepage:
- Size: 66.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ascii-art-web
Complete web application that allows users to convert text into an ascii-art representation of that text.

The user can choose between three different **fonts**: _standard_, _shadow_ and _thinkertoy_. The application supports **line feeds**, juste type the `\n` escape character to indicate a line feed. The user can also choose to **copy** the output to their clipboard, or even **save** it locally in a `.txt` file.
## Classic run
First, build the `ascii-art-web` binaries in the `bin/` directory using the `go` compiler.
go build -o bin/ascii-art-web cmd/main.go
Then, execute those binaries.
./bin/ascii-art-web
## Docker run
First, build the docker image using the provided `Dockerfile`.
docker build -t ascii-art-web .
Then, run the docker image on port `3000`.
docker run -dp 3000:80 ascii-art-web