From 1b3a4fd6100cc05c36726718afef2080525a9567 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ken-H=C3=A5vard=20Lieng?= Date: Wed, 4 Mar 2015 18:41:25 +0100 Subject: [PATCH 1/2] Create README.md --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..05e75b17 --- /dev/null +++ b/README.md @@ -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 +``` From 594caf370810ec8fd0a69517e5267984c4e1a5f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ken-H=C3=A5vard=20Lieng?= Date: Wed, 4 Mar 2015 18:44:26 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05e75b17..a0963743 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Web-based IRC client in Go. ## Building #### Requirements -* [Go](http://golang.org/doc/code.html) +* [Go](http://golang.org/doc/install) * [Node.js + npm](http://nodejs.org/download/) #### Get the source