dispatch/README.md

39 lines
564 B
Markdown
Raw Normal View History

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