https://github.com/nhomble/vela
gemini implementations
https://github.com/nhomble/vela
gemini gemini-protocol
Last synced: 3 months ago
JSON representation
gemini implementations
- Host: GitHub
- URL: https://github.com/nhomble/vela
- Owner: nhomble
- Created: 2020-10-27T21:02:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-31T04:15:17.000Z (over 4 years ago)
- Last Synced: 2025-01-21T00:47:21.530Z (5 months ago)
- Topics: gemini, gemini-protocol
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
vela
====
a [gemini](https://gemini.circumlunar.space/docs/specification.html) server
# Usage
```go
package mainimport (
"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})
}
```