Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/butlerx/butlerbot-bookclub
- Owner: butlerx
- License: mit
- Created: 2017-11-26T13:51:48.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T10:17:50.000Z (about 2 years ago)
- Last Synced: 2024-10-16T01:09:55.547Z (3 months ago)
- Language: JavaScript
- Size: 282 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'],
},
});
```