dispatch/README.md

29 lines
431 B
Markdown
Raw Normal View History

2015-03-04 17:41:25 +00:00
# name_pending
Web-based IRC client in Go.
## Building
#### Requirements
2015-03-04 17:44:26 +00:00
* [Go](http://golang.org/doc/install)
2015-03-04 17:41:25 +00:00
* [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
```