From 19515cad4c4ac08e1500bdff256b293a09998ce5 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Thu, 8 Dec 2022 17:46:53 -0600 Subject: [PATCH] Update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b8cf21..9b74ea3 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ and print out all event payloads as they come in the real time. Once the process stopped the temporary webhook is destroyed. This is super useful when testing Github events as there's no need to setup anything (endpoints, webhook receivers, etc). -It works by creating a temporary webhook for the repository that points to an -URL like `https://github-events-proxy.herokuapp.com/key`, where `key` is a random +It works by creating a temporary webhook for the repository that points to an +URL like `https://github-events.fly.dev/key`, where `key` is a random token. Github will be sending all events to that URL moving forward. Then utility connects to the given URL using Websocket prototol and receives all events in JSON format. Server part is open, check `server.go` file.