Go to file
Ken-Håvard Lieng 6a1d55c968 Set up ESLint, make it happy 2015-06-02 00:09:36 +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
assets Set up ESLint, make it happy 2015-06-02 00:09:36 +02:00
client Set up ESLint, make it happy 2015-06-02 00:09:36 +02:00
commands Add dockerfile, add data directory flag 2015-05-29 01:59:08 +02:00
server Reconnect and retry IRC connections 2015-06-01 05:44:30 +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
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 Update readme instructions 2015-05-29 03:36:19 +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 Add dockerfile, add data directory flag 2015-05-29 01:59:08 +02:00

README.md

name_pending

Web-based IRC client in Go.

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.