small debugging client for gemini, basically to execute requests on your dev server like curl
Go to file
2023-02-12 14:32:13 +00:00
gemini-request.sh first version of the script 2023-02-12 13:14:56 +00:00
LICENSE fix LICENSE 2023-02-12 14:32:13 +00:00
README.md text fix 2023-02-12 13:24:11 +00:00

gemini-request

small debugging client for gemini, basically to execute requests on your dev server like curl

I wanted to debug an issue with my local server (which is actually https://codeberg.org/adele.work/ergol) and didn't find a curl-like client (though I didn't search very far), so I figured I would write one so I can say, the first thing I did was write my own client.

It is very simple for debugging only and is basically a one-line shell script.

example usage is

request / on the default server

./gemini-request.sh

request another url on the default server

./gemini-request.sh /gemlog

request from another host

./gemini-request.sh -h gemini.circumlunar.space /

The default host is written in the script, you have to change it to your local server (my server is likely not up all the time)