mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-18 16:05:10 +00:00
This patchset removes the type defintions for the TypeScript version of balance-transfer, and makes it use the definitions in the npm repository. Change-Id: I711d438354101f48240dfec115d747d65448ee2a Signed-off-by: Taku Shimosawa <taku.shimosawa@hal.hitachi.com>
63 lines
1.4 KiB
Bash
Executable file
63 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
function dkcl(){
|
|
CONTAINER_IDS=$(docker ps -aq)
|
|
echo
|
|
if [ -z "$CONTAINER_IDS" -o "$CONTAINER_IDS" = " " ]; then
|
|
echo "========== No containers available for deletion =========="
|
|
else
|
|
docker rm -f $CONTAINER_IDS
|
|
fi
|
|
echo
|
|
}
|
|
|
|
function dkrm(){
|
|
DOCKER_IMAGE_IDS=$(docker images | grep "dev\|none\|test-vp\|peer[0-9]-" | awk '{print $3}')
|
|
echo
|
|
if [ -z "$DOCKER_IMAGE_IDS" -o "$DOCKER_IMAGE_IDS" = " " ]; then
|
|
echo "========== No images available for deletion ==========="
|
|
else
|
|
docker rmi -f $DOCKER_IMAGE_IDS
|
|
fi
|
|
echo
|
|
}
|
|
|
|
function restartNetwork() {
|
|
echo
|
|
|
|
#teardown the network and clean the containers and intermediate images
|
|
docker-compose -f ../artifacts/docker-compose.yaml down
|
|
dkcl
|
|
dkrm
|
|
|
|
#Cleanup the material
|
|
rm -rf /tmp/hfc-test-kvs_peerOrg* $HOME/.hfc-key-store/ /tmp/fabric-client-kvs_peerOrg*
|
|
|
|
#Start the network
|
|
docker-compose -f ../artifacts/docker-compose.yaml up -d
|
|
echo
|
|
}
|
|
|
|
function installNodeModules() {
|
|
echo
|
|
if [ -d node_modules ]; then
|
|
echo "============== node modules installed already ============="
|
|
else
|
|
echo "============== Installing node modules ============="
|
|
npm install
|
|
fi
|
|
echo
|
|
}
|
|
|
|
restartNetwork
|
|
|
|
installNodeModules
|
|
|
|
|
|
|
|
PORT=4000 `npm bin`/ts-node app.ts
|