15
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[初心者向け] Slack から Hubot を使えるようにする

Posted at

Slack から Hubot を使えるようにするまでの一連の流れ

Integration の設定

Slack の Apps から Hubot を検索して、Add Configuration をクリック

image

名前を決めて Add Hubot Integration

image

すると、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

image

動いた動いた

15
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?