Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrexodia/gogitterirc
Gitter/IRC Sync bot written in Go
https://github.com/mrexodia/gogitterirc
Last synced: about 1 month ago
JSON representation
Gitter/IRC Sync bot written in Go
- Host: GitHub
- URL: https://github.com/mrexodia/gogitterirc
- Owner: mrexodia
- License: mit
- Created: 2016-03-17T12:08:12.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-04-07T14:33:56.000Z (over 3 years ago)
- Last Synced: 2024-08-04T09:01:32.591Z (3 months ago)
- Language: Go
- Size: 46.9 KB
- Stars: 7
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gogitterirc
This is a simple Gitter/IRC/Telegram syncronization bot witten in Go for a low memory footprint.
**NOTICE: It is currently in development, but actively used and maintained!**
## Why?
The [gitter-irc-bot](https://github.com/finnp/gitter-irc-bot) project works great, but the overhead of Node.js is an annoyance so I decided to write a clone in Go (which compiles to native code). Also the Gitter stream API is very unstable so this bot uses the [Gitter IRC bridge](http://irc.gitter.im).
## Installation
1. Install [Go](https://golang.org) (developed on go1.6)
2. Run `go get github.com/mrexodia/gogitterirc`
3. Copy `config_sample.json` to `config.json` and configure like this:
```
{
"IRC": {
"Nick": "nickname",
"Channel": "#channel"
},
"Gitter": {
"Pass": "0123456789abcdef0123456789abcdef01234567",
"Nick": "nickname",
"Channel": "#team/room"
},
"Telegram": {
"Token": "012345678:abcdefghijklmn024728734hskjdnchfdb4",
"Admins": "admin1 admin2 admin3"
}
}
```
4. Build/Run `gogitterirc` and have fun!To make the Telegram bot sync run the /startsync command as admin in the group you want to sync to/from.