-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfablo-config.json
61 lines (61 loc) · 1.04 KB
/
fablo-config.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"$schema": "https://github.com/softwaremill/fablo/releases/download/1.0.0/schema.json",
"global": {
"fabricVersion": "2.2.4",
"tls": false,
"tools": {
"explorer": true
}
},
"orgs": [
{
"organization": {
"name": "Orderer",
"domain": "orderer.example.com"
},
"orderers": [
{
"groupName": "group1",
"type": "solo",
"instances": 1
}
]
},
{
"organization": {
"name": "Org1",
"domain": "org1.example.com"
},
"peer": {
"instances": 2,
"db": "CouchDb"
},
"tools": {
"fabloRest": true
}
}
],
"channels": [
{
"name": "my-channel1",
"orgs": [
{
"name": "Org1",
"peers": [
"peer0",
"peer1"
]
}
]
}
],
"chaincodes": [
{
"name": "workshop",
"version": "3",
"lang": "golang",
"channel": "my-channel1",
"directory": "."
}
]
}