Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 328dbff

Browse files
authored
Merge pull request #695 from erkarl/update-developing-locally-readme
Update developing locally README
2 parents cdf2441 + 303e602 commit 328dbff

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,22 @@ See the `ToDo (next release)` column on our [project board](https://github.com/l
2323

2424
### Developing Locally
2525

26-
You'll need to build `lnd` and `btcd` locally using the [installation guide](http://dev.lightning.community/guides/installation/). Then start by cloning this git repo and go inside the project folder to run the following commands:
26+
#### Install lnd
27+
```
28+
git clone https://github.com/lightningnetwork/lnd $GOPATH/src/github.com/lightningnetwork/lnd
29+
cd $GOPATH/src/github.com/lightningnetwork/lnd
30+
make && make install tags=experimental
31+
```
32+
33+
#### Install btcd
34+
```
35+
git clone https://github.com/btcsuite/btcd $GOPATH/src/github.com/btcsuite/btcd
36+
cd $GOPATH/src/github.com/btcsuite/btcd
37+
glide install
38+
go install . ./cmd/...
39+
```
40+
41+
Then start by cloning this git repo and go inside the project folder to run the following commands:
2742
```
2843
npm install
2944

0 commit comments

Comments
 (0)