从 Hubot 中删除 Heroku 设置?

Remove Heroku setting from Hubot?

我试过 运行 Heroku 上的 Hubot,但我放弃了,因为我不想透露我的信用卡号码。

相反,我在 mac 上尝试了 运行 Hubot。它给出了一个错误,像这样:

$ ./bin/hubot
hubot-sample> [Fri Jun 05 2015 11:41:52 GMT+0900 (JST)] ERROR hubot-heroku-alive included, but missing HUBOT_HEROKU_KEEPALIVE_URL. `heroku config:set HUBOT_HEROKU_KEEPALIVE_URL=$(heroku apps:info -s  | grep web_url | cut -d= -f2)`
[Fri Jun 05 2015 11:41:52 GMT+0900 (JST)] INFO Using default redis on localhost:6379

我认为发生此错误是因为 Hubot 正在寻找 Heroku。我该如何删除它?

试试这个。

cd <your-hubot-project-dir>
npm uninstall hubot-heroku-keepalive --save

然后从文件 "external-scripts.json".

中找到并删除包含 "hubot-heroku-keepalive" 的行

运行 "bin/hubot" 再一次。