Slack から Hubot を使えるようにするまでの一連の流れ
Integration の設定
Slack の Apps から Hubot を検索して、Add Configuration をクリック
名前を決めて Add Hubot Integration
すると、API Token が発行されます。
後から名前やアイコンの設定も可能です。
ローカルで Hubot を起動
後は hubot-slack の README 書かれている通りにすれば動くようになります!
% npm install -g hubot coffee-script yo generator-hubot
% mkdir -p hello_hubot
% cd hello_hubot
% yo hubot
_____________________________
/ \
//\ | Extracting input for |
////\ _____ | self-replication process |
//////\ /_____\ \ /
======= |[^_/\_]| /----------------------------
| | _|___@@__|__
+===+/ /// \_\
| |_\ /// HUBOT/\\
|___/\// / \\
\ / +---+
\____/ | |
| //| +===+
\// |xx|
? Owner pekepek
? Bot name hello_hubot
? Description Hello Hubot!!
? Bot adapter (campfire) slackgot back false
/usr/local/lib/node_modules/yo/node_modules/rx/dist/rx.js:77
throw e;
^
true
あれ、落ちた。
Yeoman の状態を見てみると
% yo doctor
Yeoman Doctor
Running sanity checks on your system
✔ Global configuration file is valid
✔ NODE_PATH matches the npm root
✔ Node.js version
✔ No .bowerrc file in home directory
✔ No .yo-rc.json file in home directory
✔ npm version
特に問題はなさそう。
ググってみると理由は分からないが、実行時にオプションで渡すと上手く行くとのこと
% yo hubot --owner="pekepek" --name="hello_hubot" --description="Hello Hubot!!" --adapter=slack
_____________________________
/ \
//\ | Extracting input for |
////\ _____ | self-replication process |
//////\ /_____\ \ /
======= |[^_/\_]| /----------------------------
| | _|___@@__|__
+===+/ /// \_\
| |_\ /// HUBOT/\\
|___/\// / \\
\ / +---+
\____/ | |
| //| +===+
\// |xx|
create bin/hubot
create bin/hubot.cmd
create Procfile
create README.md
create external-scripts.json
create hubot-scripts.json
create .gitignore
create package.json
create scripts/example.coffee
create .editorconfig
...
上手くいった。
hubot-slack 入れて
% npm install hubot-slack --save
ローカルで動かしてみる
% HUBOT_SLACK_TOKEN=[YOUR TOKEN] ./bin/hubot --adapter slack
動いた動いた