Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.

Hubot runs under nodejs, for linux do install: (http://how-to.linuxcareer.com/how-to-install-and-use-hubot-robot-on-ubuntu-machine)

Kodeblok
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install libssl-dev redis-server libexpat1-dev
sudo apt-get install nodejs
sudo apt-get install npm
sudo apt-get install git-core
Tip

On older OS'es (on Ubuntu 10.04 LTS, newest version is v0.6.x - so compile nodejs Youself:

Kodeblok
mkdir source
cd source
git clone https://github.com/joyent/node.git
cd node
git checkout v0.10.25
 
(The message about the “detached HEAD” is ok to ignore. The message is explaining that you have the master pointer pointing to a commit in the middle of the history)

./configure
make && sudo make install

 

Create the Hubot Dir

Kodeblok
mkdir /opt/hubot
cd /opt/hubot

...

Kodeblok
cd /opt/hubot/bin
vi hubot

 

The Config - PORT is optional

Kodeblok
titlehubot
 ##!/bin/sh

npm install

export PATH="node_modules/.bin:node_modules/hubot/node_modules/.bin:$PATH"


# HIPCHAT
export PORT=8070
export HUBOT_HIPCHAT_TOKEN="**********************"
export HUBOT_HIPCHAT_JID="*****_***@chat.hipchat.com"
export HUBOT_HIPCHAT_NAME="Hal 9000"
export HUBOT_HIPCHAT_PASSWORD="********"
export HUBOT_HIPCHAT_ROOMS="@All"
export HUBOT_HIPCHAT_BLACKLIST=""
export HUBOT_HIPCHAT_HOST="chat.hipchat.com"
export HUBOT_LOG_LEVEL="debug"
export HUBOT_HIPCHAT_RECONNECT="true"

...

Kodeblok
cd /opt/hubot
bin/hubot --adapter hipchat

 

Updating Hubot

Kodeblok
cd opt/hal9000
npm install --save hubot-hipchat


npm http GET http://registry.npmjs.org/hubot-hipchat
npm http 200 http://registry.npmjs.org/hubot-hipchat
npm http GET http://registry.npmjs.org/hubot-hipchat/-/hubot-hipchat-2.7.5.tgz
npm http 200 http://registry.npmjs.org/hubot-hipchat/-/hubot-hipchat-2.7.5.tgz
Tip

Hubot sending HTML - https://github.com/github/hubot-scripts/blob/master/src/scripts/hipchat-api.coffee

 

You can get SSL problems "CERT_UNTRUSTED" with old node versions - see https://github.com/coolaj86/node-ssl-root-cas

A "dirty" hack is to place this in the hubot file:

Advarsel

# SSL Problem
# https://github.com/coolaj86/node-ssl-root-cas
export NODE_TLS_REJECT_UNAUTHORIZED="0"

 

Links

http://12devsofxmas.co.uk/2014/01/day-11-creating-your-own-franken-butler-with-hubot/

http://stackoverflow.com/questions/24635934/clear-timers-on-hubot-reload-all-scripts

https://github.com/github/hubot/blob/master/docs/scripting.md