We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the doc tutorial at https://hyperledger.github.io/fabric-chaincode-node/main/api/ where it talks about how to start a chaincode:
"scripts": { "start": "fabric-chaincode-node start" }
we should also talk about how to start chaincode as a service, and how to set grpc parameters in the startup, e.g.:
"scripts": { "start": "fabric-chaincode-node server --grpc.max_send_message_length 100000000 --grpc.max_receive_message_length 100000000" }
This would increase the grpc limit from the default of 4MB to 100MB.
Note that passing grpc parameters recently became possible in node chaincode v2.5.4.
Note also that the source for this doc topic is at: https://github.com/hyperledger/fabric-chaincode-node/blob/main/docs/_jsdoc/index.md
The text was updated successfully, but these errors were encountered:
It appears the jsdocs are not getting published, I've opened a separate issue: #422
For example the source at: https://github.com/hyperledger/fabric-chaincode-node/blob/main/docs/_jsdoc/index.md
Should get pushed to branch: https://github.com/hyperledger/fabric-chaincode-node/blob/gh-pages/main/api/index.html
So that it renders here: https://hyperledger.github.io/fabric-chaincode-node/main/api/
Sorry, something went wrong.
Doc update merged, although docs are not yet being published by the build.
s7santosh
No branches or pull requests
In the doc tutorial at https://hyperledger.github.io/fabric-chaincode-node/main/api/ where it talks about how to start a chaincode:
we should also talk about how to start chaincode as a service, and how to set grpc parameters in the startup, e.g.:
This would increase the grpc limit from the default of 4MB to 100MB.
Note that passing grpc parameters recently became possible in node chaincode v2.5.4.
Note also that the source for this doc topic is at:
https://github.com/hyperledger/fabric-chaincode-node/blob/main/docs/_jsdoc/index.md
The text was updated successfully, but these errors were encountered: