An open API service indexing awesome lists of open source software.

https://github.com/nhomble/vela

gemini implementations
https://github.com/nhomble/vela

gemini gemini-protocol

Last synced: 3 months ago
JSON representation

gemini implementations

Awesome Lists containing this project

README

        

vela
====
![Go](https://github.com/nhomble/vela/workflows/Go/badge.svg)

a [gemini](https://gemini.circumlunar.space/docs/specification.html) server

# Usage
```go
package main

import (
"github.com/nhomble/gemini-server/server"
"os"
)

func main(){
root, _ := os.Getwd()
server.ListenAndServe("", "path/to/public.pem", "path/to/private.pem", server.FileServingRequestHandler{Root: root})
}
```