The irc bot to go with Standup.
Clone the repository:
$ git clone https://github.com/mozilla/standup-irc
$ cd standup-irc
If you have Docker setup then you can use that to run the bot:
$ make run
This will build the docker image and run the service.
If you don't have Docker you can use a local nodejs environment to get the dependencies:
$ npm install .
Next you need to configure standup-irc:
$ cp config-sample.json config.json
Now edit config.json with your favorite editor.
There are comments in the config file regarding the various properties.
If you're using Docker you can also use a .env
file to define environment
variables that the bot can use instead of the config.json
file.
After you've configured it, you can run it like this:
$ npm start
Run the tests, yo!
$ npm test
Or with Docker it would be:
$ make test