mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 09:35:10 +00:00
Added missing dependency,Updated ci pipelines to include gateway go application (#577)
Signed-off-by: sapthasurendran <saptha.surendran@ibm.com>
This commit is contained in:
parent
887e4a3578
commit
48fe95ee30
2 changed files with 11 additions and 1 deletions
|
|
@ -19,7 +19,8 @@
|
||||||
"author": "Hyperledger",
|
"author": "Hyperledger",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@hyperledger/fabric-gateway": "^1.0.0"
|
"@hyperledger/fabric-gateway": "^1.0.0",
|
||||||
|
"@grpc/grpc-js": "^1.5.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tsconfig/node14": "^1.0.1",
|
"@tsconfig/node14": "^1.0.1",
|
||||||
|
|
|
||||||
|
|
@ -90,3 +90,12 @@ print "Running the output app"
|
||||||
node dist/app.js
|
node dist/app.js
|
||||||
popd
|
popd
|
||||||
stopNetwork
|
stopNetwork
|
||||||
|
|
||||||
|
# Run Go gateway application
|
||||||
|
createNetwork
|
||||||
|
print "Initializing Go gateway application"
|
||||||
|
pushd ../asset-transfer-basic/application-gateway-go
|
||||||
|
print "Executing AssetTransfer.go"
|
||||||
|
go run .
|
||||||
|
popd
|
||||||
|
stopNetwork
|
||||||
Loading…
Reference in a new issue