From 3e72e0cc6d1a5bd45731024439f2e6ac1c572c48 Mon Sep 17 00:00:00 2001 From: "Ryan X. Charles" Date: Wed, 28 May 2014 15:13:12 -0700 Subject: [PATCH] improve README instructions so they are step-by-step and accurate --- README.md | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2fc1cad0b..1d9e784ce 100644 --- a/README.md +++ b/README.md @@ -5,20 +5,32 @@ Copay Installation: -Copy config.template.js to config.js +``` +git clone https://github.com/bitpay/copay.git +cd copay +``` -and edit to suit your needs. (Defaults to public PeerJS and Insight servers) +Install bower and grunt if you haven't already: +``` +npm install -g bower +npm install -g grunt-cli +``` -Copy bitcore/browser/bundle.js to copay/lib/bitcore.js - -Then execute these commands: +Build Copay: ``` npm install bower install -grunt --target=dev shell +grunt shell --target=dev +cp config.template.js config.js +``` + +Open Copay: +``` node app.js ``` +Then visit localhost:3000 in your browser. + To run on a different port: ``` PORT=3001 node app.js