small debugging client for gemini, basically to execute requests on your dev server like curl
Go to file
Alexander Lehmann f7091998d4
continuous-integration/drone/push Build is passing Details
change license to MIT
2023-09-30 19:17:37 +02:00
.drone.yml fix format 2023-08-14 20:22:08 +00:00
.gitingore change license to MIT 2023-09-30 19:17:37 +02:00
LICENSE change license to MIT 2023-09-30 19:17:37 +02:00
README.md text fix 2023-02-12 13:24:11 +00:00
gemini-request.sh use printf instead of echo 2023-08-14 21:24:19 +00:00

README.md

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)