Go to file
Ken-Håvard Lieng f6a1f793fb Test ChannelStore 2015-06-11 06:27:48 +02:00
Godeps Add some tests to the IRC client 2015-06-10 06:17:53 +02:00
assets Fix search positioning 2015-06-10 01:17:24 +02:00
client Fix search positioning 2015-06-10 01:17:24 +02:00
commands Add dockerfile, add data directory flag 2015-05-29 01:59:08 +02:00
irc Add more IRC client tests 2015-06-11 04:57:52 +02:00
server Separate vendor bundle 2015-06-08 00:11:03 +02:00
storage Test ChannelStore 2015-06-11 06:27:48 +02:00
.dockerignore Add dockerfile, add data directory flag 2015-05-29 01:59:08 +02:00
.gitignore Add dockerfile, add data directory flag 2015-05-29 01:59:08 +02:00
.travis.yml Add go vet to travis 2015-06-10 02:01:51 +02:00
Dockerfile Add dockerfile, add data directory flag 2015-05-29 01:59:08 +02:00
LICENSE Add license 2015-05-01 23:50:06 +02:00
README.md Travis badge 2015-06-10 01:53:42 +02:00
config.default.toml Add config file, handle it with Viper, add a command to open it in an editor 2015-05-25 04:00:21 +02:00
main.go Set GOMAXPROCS to NumCPU, drop httprouter 2015-06-07 01:18:26 +02:00

README.md

name_pending Build Status

####Try it!

Features

  • Searchable history
  • Persistent connections
  • Multiple users

Usage

There is a few different ways of getting it:

1. Binary

There will be binary releases.

2. Go

This requires a Go environment.

go get github.com/khlieng/name_pending

name_pending

To get some help run:

name_pending help

3. Docker

docker run -p 8080:8080 khlieng/name_pending

Build

Server

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

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/name_pending/client
npm install

Run the build:

gulp -p

The server needs to be rebuilt after this. For development dropping the -p flag will turn off minification and embedding, requiring only one initial server rebuild.