エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
hubotをherokuで動かす - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
hubotをherokuで動かす - Qiita
mkdir ~/hubot cd ~/hubot wget --no-check-certificate https://github.com/downloads/github/hubot/hu... 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

