2015-03-04 17:41:25 +00:00
|
|
|
# name_pending
|
|
|
|
Web-based IRC client in Go.
|
|
|
|
|
2015-04-22 22:44:40 +00:00
|
|
|
## Installing
|
2015-03-04 17:41:25 +00:00
|
|
|
```bash
|
|
|
|
go get github.com/khlieng/name_pending
|
|
|
|
```
|
|
|
|
|
2015-04-22 22:44:40 +00:00
|
|
|
## 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
|
2015-04-26 22:45:49 +00:00
|
|
|
|
2015-04-22 22:44:40 +00:00
|
|
|
go install
|
2015-03-04 17:41:25 +00:00
|
|
|
```
|
|
|
|
|
2015-04-22 22:44:40 +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
|
2015-04-22 22:44:40 +00:00
|
|
|
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-04-26 22:45:49 +00:00
|
|
|
|
2015-03-04 17:41:25 +00:00
|
|
|
gulp -p
|
2015-04-22 22:44:40 +00:00
|
|
|
|
|
|
|
# Rebuild the server :)
|
|
|
|
```
|