Merge pull request #12 from maraoz/task/readme
Installation guide for Ubuntu added to README file and some ignores
This commit is contained in:
commit
c6acb77b0d
|
@ -1,3 +1,5 @@
|
||||||
build/
|
build/
|
||||||
node_modules/
|
node_modules/
|
||||||
*.swp
|
*.swp
|
||||||
|
*~
|
||||||
|
.project
|
||||||
|
|
26
README.md
26
README.md
|
@ -1,4 +1,28 @@
|
||||||
libcoin
|
bitcore
|
||||||
=======
|
=======
|
||||||
|
|
||||||
Nodejs Bitcoin Library
|
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
|
||||||
|
|
Loading…
Reference in New Issue