mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Have the application read the common connection profile to build a JSON object used for the gateway connect and for a fabric-ca client instance. Signed-off-by: Bret Harrison <beharrison@nc.rr.com>
21 lines
493 B
YAML
21 lines
493 B
YAML
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
steps:
|
|
- script: bash startFabric.sh javascript
|
|
workingDirectory: fabcar
|
|
displayName: Start Fabric
|
|
- script: |
|
|
retry -- npm install
|
|
npm ls
|
|
workingDirectory: fabcar/javascript
|
|
displayName: Install FabCar application dependencies
|
|
- script: |
|
|
set -ex
|
|
node enrollAdmin
|
|
node registerUser
|
|
node invoke
|
|
node query
|
|
workingDirectory: fabcar/javascript
|
|
displayName: Run FabCar application
|