https://github.com/darkliquid/leader1
Go IRC Bot
https://github.com/darkliquid/leader1
Last synced: 6 months ago
JSON representation
Go IRC Bot
- Host: GitHub
- URL: https://github.com/darkliquid/leader1
- Owner: darkliquid
- License: mit
- Created: 2014-01-25T16:51:54.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-26T12:55:55.000Z (almost 12 years ago)
- Last Synced: 2024-06-21T02:53:32.957Z (about 2 years ago)
- Language: Go
- Size: 577 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
leader-1
========
Go IRC Bot, named after Leader-1 from GoBots.
## Configuration
Leader-1 expects there to be a leader-1.json in the current directory by default. The config file should be structured in the following way. All settings are required.
```json
{
"irc": {
"host": "irc.domain.tld",
"port": "6667",
"nick": "mightygobot",
"nickpass": "MyIdentifyPassword",
"pass": "ServerPassword",
"ssl": false,
"normal_channel": "#channel",
"staff_channel": "#staff",
"timeout": 30
},
"db": {
"dsn": "user:pass@tcp(localhost)/database"
}
}
```