Go to file
Ken-Håvard Lieng a45833e281 Add go 1.5 travis build 2015-08-25 22:28:48 +02:00
Godeps Smaller docker image 2015-06-12 01:09:23 +02:00
assets Refactor websocket handler 2015-06-17 00:46:58 +02:00
client Refactor websocket handler 2015-06-17 00:46:58 +02:00
commands Smaller docker image 2015-06-12 01:09:23 +02:00
irc Add more IRC client tests 2015-06-11 04:57:52 +02:00
server Refactor websocket handler 2015-06-17 00:46:58 +02:00
storage Test ChannelStore 2015-06-11 06:27:48 +02:00
.dockerignore
.gitignore Smaller docker image 2015-06-12 01:09:23 +02:00
.travis.yml Add go 1.5 travis build 2015-08-25 22:28:48 +02:00
Dockerfile Smaller docker image 2015-06-12 01:09:23 +02:00
LICENSE
README.md Travis badge 2015-06-10 01:53:42 +02:00
config.default.toml
docker.sh Set ldflags -w when compiling for docker 2015-06-12 04:21:17 +02:00
main.go

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.