Skip to content

Setting up GiHub Hubot to connect to Jabbr

laurentkempe edited this page Sep 29, 2012 · 1 revision

Currently this is tested with nodejs v0.8.2.

First you need to install nodejs v0.8.2.

Then start PowerShell and use the following commands:

mkdir hubot

cd hubot

npm install hubot

cd node_modules\hubot

npm install https://github.com/smoak/hubot-jabbr/tarball/master

Set the different environment variables needed:

$env:HUBOT_JABBR_PASSWORD = ”HubotPwd”

$env:HUBOT_JABBR_ROOMS = ”Development”

$env:HUBOT_JABBR_HOST = ”http://localhost:17221”

Adapt the HUBOT_JABBR_HOST port to the one used by your installation.

Finally run Hubot using node and coffee

node .\node_modules\coffee-script\bin\coffee .\bin\hubot –a jabbr

You should then see this in Jabbr

Github Hubot joined Jabbr

You might read more details on the following blog post - "Automate your Jabbr chat using Github Hubot all running on a Windows machine"

Clone this wiki locally