Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/butlerx/butlerbot-bookclub

bookclub plugin for butlerbot
https://github.com/butlerx/butlerbot-bookclub

Last synced: about 1 month ago
JSON representation

bookclub plugin for butlerbot

Awesome Lists containing this project

README

        

# butlerbot-bookclub

bookclub plugin for butlerbot

## Install

```sh
yarn add butlerbot-bookclub
```
Create a file in the plugin dir as follows

```js
import bookclub from 'butlerbot-bookclub';

export default bookclub({
development: {
setTopic: true,
topicBase: '|| Dev Bot || Expect spam || Expect breakings',
awsId: '',
awsSecret: '',
channels: ['#botdev'],
channelsToExclude: [],
channelsToJoin: ['#botdev'],
},

production: {
setTopic: true,
topicBase:
' || Welcome to Bookclub check out https://github.com/butlerx/butlerbot/wiki/bookclub for commands',
awsId: '',
awsSecret: '',
channels: ['#BookClub'],
channelsToExclude: [],
channelsToJoin: ['#BookClub'],
},
});
```