From c09ba1f9b54561c78fdfad95b03828abe1a943ba Mon Sep 17 00:00:00 2001 From: Adrien le Maire Date: Fri, 8 Dec 2023 10:25:41 +0100 Subject: [PATCH] first commit --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..19e8258 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Go HTTP Function + +Welcome to your new Go Function! The boilerplate function code can be found in +[`handle.go`](handle.go). This Function responds to HTTP requests. + +## Development + +Develop new features by adding a test to [`handle_test.go`](handle_test.go) for +each feature, and confirm it works with `go test`. + +Update the running analog of the function using the `func` CLI or client +library, and it can be invoked from your browser or from the command line: + +```console +curl http://myfunction.example.com/ +``` + +For more, see [the complete documentation]('https://github.com/knative/func/tree/main/docs') + +