Create README.md

This commit is contained in:
Ken-Håvard Lieng 2015-03-04 18:41:25 +01:00
parent fca0f6887e
commit 1b3a4fd610

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/code.html)
* [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
```