Update readme

* minor misc changes
This commit is contained in:
Locria Cyber 2023-09-30 16:15:26 +00:00
parent fb3e7f9285
commit 6845a4e573
Signed by: iacore
GPG key ID: ED0D424AE4406330
3 changed files with 12 additions and 6 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/status

View file

@ -2,6 +2,7 @@ package main
import (
"log"
"fmt"
"net/http"
"git.exozy.me/exozyme/status/proto"
@ -39,5 +40,7 @@ func rootPage(w http.ResponseWriter, r *http.Request) {
func main() {
http.HandleFunc("/", rootPage)
fmt.Printf("Listening on http://%v/\n", "localhost:3333")
log.Fatal(http.ListenAndServe(":3333", nil))
}

View file

@ -2,16 +2,18 @@
Tech stack
- [ ] HTTP Server - std.http
- [ ] Templating - {{mustache}}
- [x] HTTP Server - `net/http`
- [x] Templating - {{mustache}}
- [ ] spawn with dinit
- [ ] Auto deploy with CI
Check online methods
- [ ] TCP Connect
- [ ] HTTP 2xx
- [-] TCP Connect (not integrated)
- [-] HTTP 2xx (not integrated)
Services
- [ ] HTTP page
- [ ] Matrix notification
- [x] HTTP page
- [-] Matrix notification (not integrated)