Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/butlerx/butlerbot-uno
uno plugin for butlerbot
https://github.com/butlerx/butlerbot-uno
Last synced: about 1 month ago
JSON representation
uno plugin for butlerbot
- Host: GitHub
- URL: https://github.com/butlerx/butlerbot-uno
- Owner: butlerx
- License: mit
- Created: 2017-11-26T13:11:21.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-11T04:16:06.000Z (over 3 years ago)
- Last Synced: 2024-10-16T01:09:55.623Z (3 months ago)
- Language: JavaScript
- Size: 194 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# butlerbot-uno
uno plugin for butlerbot
## Install
```sh
yarn add butlerbot-uno
```
Create a file in the plugin dir as follows```js
import uno from 'butlerbot-uno';
export default uno({
development: {
"url": "http://redbrick.dcu.ie/api/committee",
channels: ['#butlerbot'],
channelsToExclude: [],
channelsToJoin: ['#butlerbot'],
"gameOptions": {
"turnMinutes": 3,
"maxIdleTurns": 3,
"idleRoundTimerDecrement": 60,
"setTopic": true,
"topicBase": "|| Dev Bot || Expect spam || Expect breakings"
},
},production: {
"url": "http://redbrick.dcu.ie/api/committee",
channels: ['#butlerbot'],
channelsToExclude: [],
channelsToJoin: ['#butlerbot'],
"gameOptions": {
"turnMinutes": 3,
"maxIdleTurns": 3,
"idleRoundTimerDecrement": 60,
"setTopic": true,
"topicBase": "|| Dev Bot || Expect spam || Expect breakings"
},
},
});
```