Go to file
2015-04-23 00:44:40 +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 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
.gitignore Added title bar and basic message and command input 2015-01-21 03:06:34 +01:00
bindata.go 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
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 Embed static assets with go-bindata 2015-04-22 22:58:20 +02:00
message_handler.go Add /away 2015-02-21 13:06:05 +01:00
README.md 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
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/...
go get github.com/elazarl/go-bindata-assetfs/...

cd $GOPATH/src/github.com/khlieng/name_pending/client
npm install
gulp -p
go-bindata-assetfs -nomemcopy dist/...
mv bindata_assetfs.go ../bindata.go

# Rebuild the server :)