From 2da572baecfbe1716cbe697fa43c60c7661e285c Mon Sep 17 00:00:00 2001 From: Marrub Date: Sat, 29 Oct 2016 03:51:34 -0400 Subject: [PATCH] Fix README --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ef29311..a7f3911 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,14 @@ and pull requests if you need features added. ## Environment Configuration -- `PORT`: Port to host on. Required. +- `WEBHOOK_PORT`: Port to host on. Required. - `WEBHOOK_URI`: URI for the webhook to send to. Required. - `GITHUB_SECRET`: Secret key for validating requests. Not required, but *heavily recommended*. - `VHOST`: Virtual host to respond from. Recommended if you use your own subdomain. ### Example -`WEBHOOK_URI='https://canary.discordapp.com/api/webhooks/whatever' GITHUB_SECRET='whatever' VHOST='whatever.wherever.com' PORT=6666 npm run start` +``` +npm update +WEBHOOK_PORT=80 WEBHOOK_URI='https://canary.discordapp.com/api/webhooks/whatever' GITHUB_SECRET='whatever' VHOST='whatever.wherever.com' npm run start +```