選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Jeremy Latt 0874692aa8 send proper replies for cap protocol 10年前
irc send proper replies for cap protocol 10年前
.gitignore remove unnecessary ignores 10年前
LICENSE MIT license 10年前
README.md readme 10年前
config.json add comments explaining config file 10年前
ergonomadic.go properly persist channels 10年前

README.md

Ergonomadic

Ergonomadic is an IRC daemon written from scratch in Go. Pull requests and issues are welcome.

Some Features

  • follows the RFC where possible
  • JSON-based configuration
  • server password
  • channels with many standard modes
  • IRC operators
  • TLS support (but better to use stunnel with proxy protocol)
  • haproxy PROXY protocol header for hostname setting
  • passwords stored in bcrypt format
  • channels that persist between restarts (+P)

Why?

I wanted to learn Go.

What’s with the name?

“Ergonomadic” is an anagram of “Go IRC Daemon”.

Installation

go get
go install
ergonomadic -conf '/path/to/config.json' -initdb

Configuration

See the example config.json. Passwords are base64-encoded bcrypted byte strings. You can generate them with the genpasswd subcommand.

ergonomadic -genpasswd 'hunter21!'

Running the Server

ergonomadic -conf '/path/to/config.json'

Helpful Documentation