Go to file
Ken-Håvard Lieng 90b74ee022 Implement Content-Security-Policy 2016-02-03 19:44:44 +01:00
Godeps Use gencode on disk 2016-01-22 18:30:47 +01:00
assets Implement Content-Security-Policy 2016-02-03 19:44:44 +01:00
client Implement Content-Security-Policy 2016-02-03 19:44:44 +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
irc Remove select statement in irc.recv() 2016-01-24 22:02:37 +01:00
letsencrypt Update server dependencies 2016-01-15 19:48:03 +01:00
server Implement Content-Security-Policy 2016-02-03 19:44:44 +01:00
storage Embed servers, channels and users in index.html 2016-01-26 22:10:44 +01:00
.dockerignore Add dockerfile, add data directory flag 2015-05-29 01:59:08 +02:00
.editorconfig Switch to redux and webpack 2015-12-29 00:34:32 +01:00
.gitignore Add release script 2016-01-20 00:32:33 +01:00
.travis.yml Fix travis go version order 2016-02-03 03:15:26 +01:00
Dockerfile Let's Encrypt 2016-01-04 19:26:32 +01:00
LICENSE Add license 2015-05-01 23:50:06 +02:00
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
config.default.toml Add configurable HSTS and some other headers 2016-01-25 22:41:54 +01:00
docker.sh Switch to redux and webpack 2015-12-29 00:34:32 +01:00
main.go Name it 2015-12-11 04:35:48 +01:00
release.sh Add release script 2016-01-20 00:32:33 +01:00

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.

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