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:
sapthasurendran 2022-01-12 19:11:38 +05:30 committed by GitHub
parent 887e4a3578
commit 48fe95ee30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View file

@ -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",

View file

@ -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