-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.sh
executable file
·34 lines (19 loc) · 863 Bytes
/
start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
cd network
./dockerup.sh
cd -
cd app
echo "******Installing fabric-client********"
npm install fabric-client
npm install
rm -rf key-store-bng key-store-hyd
echo "********************************************Enroll admin for bng********************************************"
node enrollbng.js
echo "********************************************Enroll admin for hyd********************************************"
node enrollhyd.js
echo "********************************************register admin for bng********************************************"
node registerUserbng.js
echo "********************************************register admin for hyd********************************************"
node registerUserhyd.js
echo "********************************************Server starting on port:********************************************"
node server.js
cd -