Skip to content

Instantly share code, notes, and snippets.

@jjasghar
Forked from vlpeng/gist:1348650
Created December 2, 2013 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jjasghar/7760605 to your computer and use it in GitHub Desktop.
Save jjasghar/7760605 to your computer and use it in GitHub Desktop.
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="example@domain.com" 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