Add some examples
Go module
Move handlers to their own file
A simple placeholder image generator. Supports specifying width, height, and colors. Soon text, fonts, font size, and patterns.
To install the web service:
go get git.sr.ht/~mendelmaleh/dummy/cmd/dummyserver
The config uses the TOML format. You should define the address:port
it runs on,
and its pattern root endpoint.
Additionally, a directory with fonts is required, with minimum one font, set as
the default. Ensure the fonts
value has a trailing slash.
[dummy]
addr = "localhost:port"
pattern = "/"
fonts = "fonts/"
font = "Open Sans"
The API is documented here.