mkdir ~/hubot cd ~/hubot wget --no-check-certificate https://github.com/downloads/github/hubot/hubot-1.0.3.tar.gz tar zxvf hubot-1.0.3.tar.gz cd hubot git init git add . git commit -m 'initial commit' heroku create --stack cedar git push heroku master heroku ps:scale app=1 # redis用サーバーを追加するにはherokuアカウントのverificationが必要 heroku addons:add redistogo:nano # IRCbotとして動かす場合 heroku config:add HUBOT_IRC_S
