We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent26060e3 commit58826f5Copy full SHA for 58826f5
content/webhooks/configuring/index.md
@@ -39,9 +39,9 @@ to the Internet.
39
40
##Writing the server
41
42
-Now comes the fun part! We wantout server to listen to`POST` requests, at`/payload`,
+Now comes the fun part! We wantour server to listen to`POST` requests, at`/payload`,
43
because that's where we told GitHub our webhook URL was. Since ngrok is exposing
44
-our local environment, we don't need to set up a real serversomeone online, and
+our local environment, we don't need to set up a real serversomewhere online, and
45
can happily test out our code locally.
46
47
Let's set up a little Sinatra app to do something with the information. Our initial