This is a simple website that generates ASCII art from a provided image. Check it out here.
Note
This website is still in development and it's continuosly adding new features.
- Using SSH:
git clone [email protected]:4ster-light/ascii-converter.git
- Using HTTPS:
git clone https://github.com/4ster-light/ascii-converter.git
- Change the working directory to the project folder:
cd ascii-converter
- If you have have Go, Bun and Make installed on your machine, you can use the following command directly:
make run
This will build and run the project for you, look at the makefile for other available commands.
- If you have Docker installed on your machine, you can use the following commands:
docker build -t ascii-converter .
docker run -p 8080:8080 ascii-converter
- If you have have Nix installed on your machine, you can use the following commands:
nix develop
This will open a nix shell with all the required dependencies installed so you can use make as previously described.
This are all equivalent, just use whichever is more convinient for you.