Go to file
2015-06-06 01:02:02 +02:00
assets Reconnect websockets 2015-06-04 02:06:17 +02:00
client Reconnect websockets 2015-06-04 02:06:17 +02:00
commands Add dockerfile, add data directory flag 2015-05-29 01:59:08 +02:00
Godeps Add config file, handle it with Viper, add a command to open it in an editor 2015-05-25 04:00:21 +02:00
irc Pull IRC client out 2015-06-06 00:34:13 +02:00
server Stop creating new goroutines for irc.Connect() since it doesnt block anymore 2015-06-06 01:02:02 +02:00
storage Add dockerfile, add data directory flag 2015-05-29 01:59:08 +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
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
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
main.go Add dockerfile, add data directory flag 2015-05-29 01:59:08 +02:00
README.md Add link to readme 2015-06-05 00:18:40 +02:00

name_pending

####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.