docs: correct development environment docs

This commit is contained in:
Braydon Fuller 2016-04-19 14:00:22 -04:00
parent 2975f27a8d
commit 7dabd8c4ab

View File

@ -28,11 +28,12 @@ git checkout <branchname>
**Note**: See bitcoin documentation for building bitcoin on your platform. **Note**: See bitcoin documentation for building bitcoin on your platform.
## Install ZeroMQ Development Dependency ## Install Development Dependencies
For Ubuntu: For Ubuntu:
```bash ```bash
sudo apt-get install libzmq-dev sudo apt-get install libzmq3-dev
sudo apt-get install build-essential
``` ```
For Mac OS X: For Mac OS X:
@ -112,7 +113,8 @@ Edit `bitcore-node.json` with something similar to:
"bitcoind", "bitcoind",
"web", "web",
"insight-api", "insight-api",
"insight-ui" "insight-ui",
"<additional_service>"
], ],
"servicesConfig": { "servicesConfig": {
"bitcoind": { "bitcoind": {
@ -125,6 +127,8 @@ Edit `bitcore-node.json` with something similar to:
} }
``` ```
**Note**: To install services [insight-api](https://github.com/bitpay/insight-api) and [insight-ui](https://github.com/bitpay/insight-ui) you'll need to clone the repositories locally.
Setup symlinks for all of the services and dependencies: Setup symlinks for all of the services and dependencies:
```bash ```bash