Go to file
Ken-Håvard Lieng 786d8013b9 Set InsecureSkipVerify correctly when theres no client cert, rename verify_client_certificates to verify_certificates 2017-06-30 07:20:38 +02:00
assets Update client dependencies 2017-06-29 07:50:35 +02:00
client Update client dependencies 2017-06-29 07:50:35 +02:00
commands v0.4 2017-06-29 07:57:53 +02:00
irc Support changing the nick by clicking it in MessageInput 2017-06-21 07:23:07 +02:00
letsencrypt Handle error returned by acme.NewClient 2017-05-20 23:06:37 +02:00
server Set InsecureSkipVerify correctly when theres no client cert, rename verify_client_certificates to verify_certificates 2017-06-30 07:20:38 +02:00
storage Support changing the server name by clicking it in the status tab 2017-06-12 06:31:27 +02:00
vendor Use firebase push IDs for messages 2017-04-20 05:32:22 +02:00
.dockerignore
.editorconfig
.gitignore Add yarn-error.log to .gitignore 2017-04-30 02:22:56 +02:00
.travis.yml Add go 1.9 beta travis build 2017-06-29 07:40:46 +02:00
Dockerfile
LICENSE
README.md v0.4 2017-06-29 07:57:53 +02:00
config.default.toml Set InsecureSkipVerify correctly when theres no client cert, rename verify_client_certificates to verify_certificates 2017-06-30 07:20:38 +02:00
docker.sh
main.go
release.sh

README.md

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, version 1.8 or greater.

Fetch, compile and run dispatch:

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