Skip to content

Instantly share code, notes, and snippets.

@26rahulsingh
Created January 2, 2019 05:47
Show Gist options
  • Save 26rahulsingh/f852fc13e230ccda66069038513e4c60 to your computer and use it in GitHub Desktop.
Save 26rahulsingh/f852fc13e230ccda66069038513e4c60 to your computer and use it in GitHub Desktop.
hyperledger composer setup.
1. Run following command to create .bna file -
composer archive create -t dir -n .
2. Go to fabric-dev-servers folder and create PeerAdminCard
./createPeerAdminCard.sh
3. Go to fabric-dev-servers folder and start fabric
./startFabric.sh
4. Run command to check available card list
composer card list
5. Deploying Business Networks
---------------------------
1. Installing business network
composer network install --archiveFile [email protected] --card PeerAdmin@hlfv1
2. Start Business network
composer network start --networkName jet-bank --networkVersion 0.0.1 --card PeerAdmin@hlfv1 --networkAdmin admin --networkAdminEnrollSecret adminpw
3. Import the network administrator identity as a usable business network card
composer card import --file [email protected]
4. Run command to check that the business network has been deployed successfully.
composer network ping --card admin@jet-bank
6. Expose a RESTful API
composer-rest-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment