Skip to content

Commit ef7ef14

Browse files
committed
Update README to include info from Hubot wiki
Closes nandub#87.
1 parent 85e42c5 commit ef7ef14

File tree

1 file changed

+131
-31
lines changed

1 file changed

+131
-31
lines changed

README.md

+131-31
Original file line numberDiff line numberDiff line change
@@ -6,52 +6,152 @@ This is the IRC adapter for hubot. For discussion about this adapter, join `#hu
66

77
## Installation and Setup
88

9-
This is just the irc adapter for the hubot, not the full runnable hubot package. You shouldn't have to hack on this code directly or clone it unless you want to add features or fix bugs.
9+
To get your own hubot up and running we recommend following the [Getting Started](https://github.com/github/hubot/tree/master/docs) directions from the hubot wiki, they are summarized here:
1010

11-
If you want a packaged hubot ready to run try [hubot-irc-runnable](https://github.com/jgable/hubot-irc-runnable)
11+
% npm install -g hubot coffee-script
12+
% hubot --create myhubot
13+
% cd myhubot
14+
% npm install hubot-irc --save && npm install
15+
% HUBOT_IRC_SERVER=irc.freenode.net \
16+
HUBOT_IRC_ROOMS="#myhubot-irc" \
17+
HUBOT_IRC_NICK="myhubot" \
18+
HUBOT_IRC_UNFLOOD="true" \
19+
bin/hubot -a irc --name myhubot
1220

13-
## Manual Installation
21+
**Note**: The default hubot configuration will use a redis based brain that assumes the redis server is already running. Either start your local redis server (usually with `redis-start &`) or remove the `redis-brain.coffee` script from the default `hubot-scripts.json` file.
1422

15-
This bot is now upgraded to Hubot 2.3. You should specify 0.0.8 as your hubot-irc dependency for older versions of Hubot (<2.3.0).
23+
## Configuring the Adapter
1624

17-
* Download and Extract [Hubot 2.3](https://github.com/downloads/github/hubot/hubot-2.3.2.tar.gz) from the [Hubot Downloads page](https://github.com/github/hubot/downloads)
18-
- You *must* use the downloaded and extracted version of the hubot code, not just a clone of the repo.
19-
* Run `npm install hubot-irc --save` in the extracted `Hubot 2` directory to add the `hubot-irc` adapter to your dependencies.
20-
* Install dependencies with `npm install`
21-
* Set your environment variables like: (Windows Users substitute `set` for `export`)
22-
* export HUBOT_IRC_NICK="hubot-new"
23-
* export HUBOT_IRC_ROOMS="#hubot-irc"
24-
* export HUBOT_IRC_SERVER="irc.freenode.net"
25-
* Run hubot with `bin/hubot -a irc`
25+
The IRC adapter requires only the following environment variables.
2626

27-
## Usage
27+
* `HUBOT_IRC_SERVER`
28+
* `HUBOT_IRC_ROOMS`
29+
* `HUBOT_IRC_NICK`
2830

29-
You will need to set some environment variables to use this adapter.
31+
And the following are optional.
3032

31-
### Heroku
33+
* `HUBOT_IRC_PORT`
34+
* `HUBOT_IRC_PASSWORD`
35+
* `HUBOT_IRC_NICKSERV_PASSWORD`
36+
* `HUBOT_IRC_NICKSERV_USERNAME`
37+
* `HUBOT_IRC_SERVER_FAKE_SSL`
38+
* `HUBOT_IRC_UNFLOOD`
39+
* `HUBOT_IRC_DEBUG`
40+
* `HUBOT_IRC_USESSL`
3241

33-
% heroku config:add HUBOT_IRC_NICK="hubot"
34-
% heroku config:add HUBOT_IRC_ROOMS="#hubot,#hubot-irc"
35-
% heroku config:add HUBOT_IRC_SERVER="irc.freenode.net"
42+
### IRC Server
3643

37-
### Non-Heroku environment variables
44+
This is the full hostname or IP address of the IRC server you want your hubot
45+
to connect to. Make a note of it.
3846

39-
% export HUBOT_IRC_NICK="hubot"
40-
% export HUBOT_IRC_ROOMS="#hubot,#hubot-irc"
41-
% export HUBOT_IRC_SERVER="irc.freenode.net"
47+
### IRC Rooms
4248

43-
### Advanced Options
49+
This is a comma separated list of the IRC channels you want your hubot to join.
50+
They must include the `#`. Make a note of them.
4451

45-
The `hubot-irc` adapter has a number of configurable options based on different community contributions.
52+
### IRC Nick
4653

47-
# Don't join other rooms or respond to PM's
48-
HUBOT_IRC_PRIVATE = true
54+
This is the optional nick you want your hubot to join with. If omitted it will
55+
default to the name of your hubot.
4956

50-
# Send messages via notice instead of say
51-
HUBOT_IRC_SEND_NOTICE_MODE = true
57+
### IRC Port
5258

53-
# Issue an irc command once connected to the server.
54-
HUBOT_IRC_CONNECT_COMMAND = NICKSERV blah thing1
59+
This is the optional port of the IRC server you want your hubot to connect to.
60+
If omitted the default is `6667`. Make a note of it if required.
61+
62+
### IRC Password
63+
64+
This is the optional password of the IRC server you want your hubot to connect
65+
to. If the IRC server doesn't require a password, this can be omitted. Make a
66+
note of it if required.
67+
68+
### IRC Nickserv Password
69+
70+
This is the optional Nickserv password if your hubot is using a nick registered
71+
with Nickserv on the IRC server. Make a note of it if required.
72+
73+
### IRC Nickserv Username
74+
75+
This is the optional Nickserv username if your hubot is using a nick registered
76+
with Nickserv on the IRC server, e.g. `/msg NickServ identify <username> <password>`.
77+
78+
### IRC Server Fake SSL
79+
80+
This is the optional flag if you want to accept self signed SSL certificated
81+
from a non trusted CA. You can set the variable to anything.
82+
83+
### IRC Unflood
84+
85+
This is the optional flag if you want to protect your hubot from flooding
86+
channels with messages. It will queue messages and slowly send. You can set the
87+
variable to any truthy value or a number; if a number is given we will interpret it as
88+
a wait time in milliseconds to use between sending messages.
89+
90+
### IRC Debug
91+
92+
This is the optional flag which will display debug output. You can set the
93+
variable to anything.
94+
95+
### IRC Use SSL
96+
97+
This is the optional flag if your hubot is connecting to an IRC server using
98+
SSL. You can set the variable to anything.
99+
100+
### Configuring the variables on Heroku
101+
102+
% heroku config:add HUBOT_IRC_SERVER="..."
103+
104+
% heroku config:add HUBOT_IRC_ROOMS="#foo,#bar"
105+
106+
Optional
107+
108+
% heroku config:add HUBOT_IRC_NICK="..."
109+
110+
% heroku config:add HUBOT_IRC_PORT=6767
111+
112+
% heroku config:add HUBOT_IRC_PASSWORD="..."
113+
114+
% heroku config:add HUBOT_IRC_NICKSERV_PASSWORD="..."
115+
116+
% heroku config:add HUBOT_IRC_SERVER_FAKE_SSL="true"
117+
118+
% heroku config:add HUBOT_IRC_UNFLOOD="true"
119+
120+
% heroku config:add HUBOT_IRC_DEBUG="true"
121+
122+
% heroku config:add HUBOT_IRC_USESSL="true"
123+
124+
### Configuring the variables on UNIX
125+
126+
% export HUBOT_IRC_SERVER="..."
127+
128+
% export HUBOT_IRC_ROOMS="#foo,#bar"
129+
130+
Optional
131+
132+
% export HUBOT_IRC_NICK="..."
133+
134+
% export HUBOT_IRC_PORT=6767
135+
136+
% export HUBOT_IRC_PASSWORD="..."
137+
138+
% export HUBOT_IRC_NICKSERV_PASSWORD="..."
139+
140+
% export HUBOT_IRC_SERVER_FAKE_SSL="true"
141+
142+
% export HUBOT_IRC_UNFLOOD="true" # Can optionally be passed a number (in milliseconds) that will be used as the delay between messages
143+
144+
% export HUBOT_IRC_DEBUG="true"
145+
146+
% export HUBOT_IRC_USESSL="true"
147+
148+
### Configuring the variables on Windows
149+
150+
From Powershell:
151+
152+
setx HUBOT_IRC_SERVER "..." /m
153+
154+
setx HUBOT_IRC_ROOMS "#foo,#bar" /m
55155

56156
### Testing Local Changes
57157

0 commit comments

Comments
 (0)