From 8524a905034860044d85294ed76d0b90bc22104b Mon Sep 17 00:00:00 2001 From: Ed Solis Date: Mon, 13 Oct 2014 23:53:09 -0600 Subject: [PATCH] README: Add desktop notifications instructions I also fixed the Heroku dyno scaling command, since it was not working for me at the time. Sorry @robcole for not doing pull requests initially; I thought commits automatically pushed to the server, but found that they do not. Basically, I wanted to make scheduler alert users, and this was my solution. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ffdf87..d25bb2d 100644 --- a/README.md +++ b/README.md @@ -102,12 +102,16 @@ name as a double quoted string to the `external-scripts.json` file in this repo. % heroku create --stack cedar % git push heroku master - % heroku ps:scale app=1 + % heroku ps:scale web=1 If your Heroku account has been verified you can run the following to enable and add the Redis to Go addon to your app. % heroku addons:add redistogo:nano + +If you want to alert Slack users with @mentions using desktop notifications, you will need to set up this ENV variable in Heroku: + + % heroku config:set HUBOT_SLACK_LINK_NAMES=1 If you run into any problems, checkout Heroku's [docs][heroku-node-docs].