Created
November 8, 2011 18:32
-
-
Save vlpeng/1348650 to your computer and use it in GitHub Desktop.
Hubot Heroku: How to build up your gtalk hubot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://github.com/downloads/github/hubot/hubot-1.1.9.tar.gz | |
tar zxvf hubot-*.tar.gz | |
cd hubot | |
vim Procfile | |
app: bin/hubot -a gtalk -n Hubot | |
vim bin/hubot | |
#npm install | |
#heroku logs will be more silence the error if remove the npm install from bin/hubot | |
git init | |
git add . | |
git commit -m "Initial commit" | |
heroku create --stack cedar | |
git push heroku master | |
heroku ps:scale app=1 | |
heroku addons:add redistogo:nano | |
heroku config:add HUBOT_GTALK_USERNAME="[email protected]" HUBOT_GTALK_PASSWORD="account password" | |
heroku ps | |
heroku logs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment