mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 23:45:10 +00:00
Also: - Refactor application-gateway-java slightly to reflect more idiomatic Java class structure, in line with asset-transfer-events sample. - Correctly handle unexpected error case where key file is missing. - Update Gradle wrapper for application-gateway-java. Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com>
110 lines
No EOL
2.5 KiB
Bash
Executable file
110 lines
No EOL
2.5 KiB
Bash
Executable file
set -euo pipefail
|
|
|
|
CHAINCODE_LANGUAGE=${CHAINCODE_LANGUAGE:-go}
|
|
CHAINCODE_NAME=${CHAINCODE_NAME:-basic}
|
|
CHAINCODE_PATH=${CHAINCODE_PATH:-../asset-transfer-basic}
|
|
|
|
function print() {
|
|
GREEN='\033[0;32m'
|
|
NC='\033[0m'
|
|
echo
|
|
echo -e "${GREEN}${1}${NC}"
|
|
}
|
|
|
|
function createNetwork() {
|
|
print "Creating network"
|
|
./network.sh up createChannel -ca -s couchdb
|
|
print "Deploying ${CHAINCODE_NAME} chaincode"
|
|
./network.sh deployCC -ccn "${CHAINCODE_NAME}" -ccp "${CHAINCODE_PATH}/chaincode-${CHAINCODE_LANGUAGE}" -ccv 1 -ccs 1 -ccl "${CHAINCODE_LANGUAGE}"
|
|
}
|
|
|
|
function stopNetwork() {
|
|
print "Stopping network"
|
|
./network.sh down
|
|
}
|
|
|
|
# Run Go application
|
|
createNetwork
|
|
print "Initializing Go application"
|
|
pushd ../asset-transfer-basic/application-go
|
|
print "Executing AssetTransfer.go"
|
|
go run .
|
|
popd
|
|
stopNetwork
|
|
|
|
# Run Java application
|
|
createNetwork
|
|
print "Initializing Java application"
|
|
pushd ../asset-transfer-basic/application-java
|
|
print "Executing Gradle Run"
|
|
gradle run
|
|
popd
|
|
stopNetwork
|
|
|
|
# Run Java application using gateway
|
|
createNetwork
|
|
print "Initializing Java application"
|
|
pushd ../asset-transfer-basic/application-gateway-java
|
|
print "Executing Gradle Run"
|
|
./gradlew run
|
|
popd
|
|
stopNetwork
|
|
|
|
# Run Javascript application
|
|
createNetwork
|
|
print "Initializing Javascript application"
|
|
pushd ../asset-transfer-basic/application-javascript
|
|
npm install
|
|
print "Executing app.js"
|
|
node app.js
|
|
popd
|
|
stopNetwork
|
|
|
|
# Run typescript application
|
|
createNetwork
|
|
print "Initializing Typescript application"
|
|
pushd ../asset-transfer-basic/application-typescript
|
|
npm install
|
|
print "Building app.ts"
|
|
npm run build
|
|
print "Running the output app"
|
|
node dist/app.js
|
|
popd
|
|
stopNetwork
|
|
|
|
# Run gateway typescript application
|
|
createNetwork
|
|
print "Initializing Typescript gateway application"
|
|
pushd ../asset-transfer-basic/application-gateway-typescript
|
|
npm install
|
|
print "Building app.ts"
|
|
npm run build
|
|
print "Running the output app"
|
|
node dist/app.js
|
|
popd
|
|
stopNetwork
|
|
|
|
# Run typescript HSM application
|
|
createNetwork
|
|
print "Initializing Typescript HSM application"
|
|
pushd ../asset-transfer-basic/application-typescript-hsm
|
|
print "Setup SoftHSM"
|
|
export SOFTHSM2_CONF=$PWD/softhsm2.conf
|
|
softhsm2-util --init-token --slot 0 --label "ForFabric" --pin 98765432 --so-pin 1234
|
|
print "install dependencies"
|
|
npm install
|
|
print "Building app.ts"
|
|
npm run build
|
|
print "Running the output app"
|
|
node dist/app.js
|
|
popd
|
|
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 |