Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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"
},
},
});
```