From c7a06e2ee186f988ca4c42e0b294cd4af6b9e69b Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Sun, 5 Jan 2014 21:01:06 -0300 Subject: [PATCH 1/2] Installation guide for Ubuntu added to README file. --- .gitignore | 1 + README.md | 26 +++++++++++++++++++++++++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8fde730..7bf5bb5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ build/ node_modules/ *.swp +*~ diff --git a/README.md b/README.md index b4ece18..f90284d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,28 @@ -libcoin +bitcore ======= Nodejs Bitcoin Library + + + +INSTALLATION +============ + +For Ubuntu: + +# install git +sudo apt-get install git + +# download the code +git clone https://github.com/bitpay/bitcore.git + +# obtain latest version of node.js +sudo apt-get update +sudo apt-get install -y python-software-properties python g++ make +sudo add-apt-repository -y ppa:chris-lea/node.js +sudo apt-get update +sudo apt-get install nodejs + +# install bitcore +cd bitcore/ +npm install From 93f4469055e9346d69d805e446da26f0b615a7de Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Mon, 6 Jan 2014 12:11:53 -0300 Subject: [PATCH 2/2] eclipse file ignores --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7bf5bb5..1b3441e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ build/ node_modules/ *.swp *~ +.project