39 lines
564 B
Markdown
39 lines
564 B
Markdown
# name_pending
|
|
Web-based IRC client in Go.
|
|
|
|
## Installing
|
|
```bash
|
|
go get github.com/khlieng/name_pending
|
|
```
|
|
|
|
## Running
|
|
```bash
|
|
name_pending
|
|
```
|
|
|
|
## Building the server
|
|
|
|
#### Requirements
|
|
* [Go](http://golang.org/doc/install)
|
|
|
|
```bash
|
|
cd $GOPATH/src/github.com/khlieng/name_pending
|
|
|
|
go install
|
|
```
|
|
|
|
## Building the client
|
|
|
|
#### Requirements
|
|
* [Node.js + npm](https://nodejs.org/download/)
|
|
|
|
```bash
|
|
npm install -g gulp
|
|
go get github.com/jteeuwen/go-bindata/...
|
|
cd $GOPATH/src/github.com/khlieng/name_pending/client
|
|
npm install
|
|
|
|
gulp -p
|
|
|
|
# Rebuild the server :)
|
|
``` |