Skip to content
shaundubuque edited this page Aug 21, 2012 · 6 revisions

You should report any issues or submit any pull requests to the AIM adapter repository.

Getting Started

First you will need to edit the package.json for your hubot and add the hubot-aim adapter dependency.

"dependencies": {
  "hubot-aim": ">= 0.0.5",
  "hubot": ">= 2.3",
  ...
}

Then save the file, and commit the changes to your hubot's git repository.

If deploying to Heroku you will need to edit the Procfile and change the -a campfire option to -a aim. Or if you're deploying locally you will need to use -a aim when running your hubot.

Configuring the Adapter

The AIM adapter requires only the following environment variables.

  • HUBOT_AIM_EMAIL
  • HUBOT_AIM_PASSWORD

AIM Email

This is the AIM username/email that the bot will use.

AIM Password

Password for AIM account associated with email.

Configuring the variables on Heroku

% heroku config:add HUBOT_AIM_EMAIL="<email_address>"
% heroku config:add HUBOT_AIM_PASSWORD="<password>"