summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-01 10:56:26 +0200
committerxengineering <me@xengineering.eu>2024-05-01 10:56:26 +0200
commitd982951ec15326487eefa80261a0f466d64e2ba0 (patch)
tree9506833546ea177b4bf985e39981153ae914a8fc /main.go
parent01699e3c9339cd7880f632be088d770225b84d68 (diff)
downloadceres-d982951ec15326487eefa80261a0f466d64e2ba0.tar
ceres-d982951ec15326487eefa80261a0f466d64e2ba0.tar.zst
ceres-d982951ec15326487eefa80261a0f466d64e2ba0.zip
view: Add /version endpoint
This allows to get the server version via HTTP. The output of `git describe --dirty --always` and a line break is returned together with HTTP 200. If the server build contains no version information an error message and HTTP 404 is returned.
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.go b/main.go
index 2c39239..50cfce5 100644
--- a/main.go
+++ b/main.go
@@ -59,6 +59,8 @@ func startServer(addr string) *http.Server {
r.PathPrefix("/static/").
Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static))))
+ r.HandleFunc("/version", view.VersionRead(gitDescribe)).Methods(`GET`)
+
r.HandleFunc("/recipes", view.RecipesRead).Methods(`GET`)
r.HandleFunc("/recipe", controller.RecipeCreate).Methods(`POST`)