You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+131-31
Original file line number
Diff line number
Diff line change
@@ -6,52 +6,152 @@ This is the IRC adapter for hubot. For discussion about this adapter, join `#hu
6
6
7
7
## Installation and Setup
8
8
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:
10
10
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
12
20
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.
14
22
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
16
24
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.
26
26
27
-
## Usage
27
+
*`HUBOT_IRC_SERVER`
28
+
*`HUBOT_IRC_ROOMS`
29
+
*`HUBOT_IRC_NICK`
28
30
29
-
You will need to set some environment variables to use this adapter.
0 commit comments