Reputation: 400
SO far i have done. I followed following documentation link in order to build my development enviroment.
https://github.com/hyperledger/fabric/blob/master/docs/dev-setup/devenv.md everything gone smooth then
$ make peer
It fails at first but after several attempt its complete.
Now i turned to follow the following link.
In vagrant machine, in $GOPATH/src/github.com/hyperledger/fabric/
as I try to run make membersrvc && membersrvc
i get the following error
make: *** No rule to make target 'membersrvc'. Stop.
I have tried and redo setup process for several time but no progress.
Upvotes: 2
Views: 1106
Reputation: 234
git checkout v0.6
on your fabric folder.
membersrvc has been moved to its own repository called fabric-cop. the doc is based on fabric v0.6 https://github.com/hyperledger/fabric/tree/v0.6
Upvotes: 4
Reputation: 11
Membership services have been moved to it own repository and they removed it from fabric master .
https://github.com/hyperledger/fabric/commit/db7a41fd3fe8dc111c5f4e533410934a0ae8760f
Upvotes: 1