This commit is contained in:
khlieng 2015-03-04 18:49:52 +01:00
commit 883ff2b081
1 changed files with 28 additions and 0 deletions

28
README.md Normal file
View File

@ -0,0 +1,28 @@
# name_pending
Web-based IRC client in Go.
## Building
#### Requirements
* [Go](http://golang.org/doc/install)
* [Node.js + npm](http://nodejs.org/download/)
#### Get the source
```bash
go get github.com/khlieng/name_pending
```
#### Compile the server
```bash
cd $GOPATH/src/github.com/khlieng/name_pending
go build -o bin/name_pending
```
#### Build the client
```bash
npm install -g gulp
cd client
npm install
gulp -p
```