Go to file
2016-02-01 00:14:24 +01:00
assets Use only single-method imports from lodash 2016-01-27 21:41:24 +01:00
client Use only single-method imports from lodash 2016-01-27 21:41:24 +01:00
commands Set long cache-control and add a hash to css and js urls, clean some things up 2016-01-25 06:01:40 +01:00
Godeps Use gencode on disk 2016-01-22 18:30:47 +01:00
irc Remove select statement in irc.recv() 2016-01-24 22:02:37 +01:00
letsencrypt
server Trim trailing whitespace off RPL_NAMREPLY, this fixes usercount sometimes being 1 too high 2016-02-01 00:14:24 +01:00
storage Embed servers, channels and users in index.html 2016-01-26 22:10:44 +01:00
.dockerignore
.editorconfig
.gitignore Add release script 2016-01-20 00:32:33 +01:00
.travis.yml Update travis go version 2016-01-19 23:06:31 +01:00
config.default.toml Add configurable HSTS and some other headers 2016-01-25 22:41:54 +01:00
docker.sh
Dockerfile
LICENSE
main.go
README.md Set long cache-control and add a hash to css and js urls, clean some things up 2016-01-25 06:01:40 +01:00
release.sh Add release script 2016-01-20 00:32:33 +01:00

dispatch Build Status

####Try it!

Dispatch

Features

  • Searchable history
  • Persistent connections
  • Multiple servers and users
  • Automatic HTTPS through Let's Encrypt
  • Client certificates

Usage

There is a few different ways of getting it:

1. Binary

2. Go

This requires a Go environment.

go get github.com/khlieng/dispatch

dispatch

To get some help run:

dispatch help

3. Docker

docker run -p <http port>:80 -p <https port>:443 -v <path>:/data khlieng/dispatch

Build

Server

cd $GOPATH/src/github.com/khlieng/dispatch

go install

Client

This requires Node.js.

Fetch the dependencies:

npm install -g gulp
go get github.com/jteeuwen/go-bindata/...
cd $GOPATH/src/github.com/khlieng/dispatch/client
npm install

Run the build:

gulp build

The server needs to be rebuilt after this.

For development with hot reloading enabled run:

gulp
dispatch --dev

Libraries

The libraries this project is built with.

Server

Client