Go to file
2015-04-27 00:45:49 +02:00
client Update readme, store data in homedir/.name_pending instead the cwd, move client build output back to client/dist 2015-04-23 00:44:40 +02:00
Godeps Vendor dependencies with godep 2015-03-04 17:38:10 +01:00
storage Rewrite vendored imports in subpackages, get rid of assetfs and implement filesystem on top of bindata that supports -debug, update build instructions 2015-04-27 00:45:49 +02:00
.gitignore Added title bar and basic message and command input 2015-01-21 03:06:34 +01:00
bindata_fs.go Rewrite vendored imports in subpackages, get rid of assetfs and implement filesystem on top of bindata that supports -debug, update build instructions 2015-04-27 00:45:49 +02:00
bindata.go Rewrite vendored imports in subpackages, get rid of assetfs and implement filesystem on top of bindata that supports -debug, update build instructions 2015-04-27 00:45:49 +02:00
irc.go Store selected tab in the URL 2015-02-22 08:57:52 +01:00
json_types.go Add /away 2015-02-21 13:06:05 +01:00
main.go Rewrite vendored imports in subpackages, get rid of assetfs and implement filesystem on top of bindata that supports -debug, update build instructions 2015-04-27 00:45:49 +02:00
message_handler.go Add /away 2015-02-21 13:06:05 +01:00
README.md Rewrite vendored imports in subpackages, get rid of assetfs and implement filesystem on top of bindata that supports -debug, update build instructions 2015-04-27 00:45:49 +02:00
session.go Vendor dependencies with godep 2015-03-04 17:38:10 +01:00
websocket_handler.go Vendor dependencies with godep 2015-03-04 17:38:10 +01:00
websocket.go Vendor dependencies with godep 2015-03-04 17:38:10 +01:00

name_pending

Web-based IRC client in Go.

Installing

go get github.com/khlieng/name_pending

Running

name_pending

Building the server

Requirements

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

go install

Building the client

Requirements

npm install -g gulp
go get github.com/jteeuwen/go-bindata/...
cd $GOPATH/src/github.com/khlieng/name_pending/client
npm install

gulp -p
go-bindata -nomemcopy -o ../bindata.go dist/...

# Rebuild the server :)