forked from open-chat-labs/open-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
153 lines (153 loc) · 4.47 KB
/
dfx.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"dfx": "0.13.1",
"canisters": {
"user_index": {
"type": "custom",
"candid": "backend/canisters/user_index/api/can.did",
"wasm": "wasms/user_index.wasm.gz",
"build": "./scripts/generate-wasm.sh user_index"
},
"group_index": {
"type": "custom",
"candid": "backend/canisters/group_index/api/can.did",
"wasm": "wasms/group_index.wasm.gz",
"build": "./scripts/generate-wasm.sh group_index"
},
"local_user_index": {
"type": "custom",
"candid": "backend/canisters/local_user_index/api/can.did",
"wasm": "wasms/local_user_index.wasm.gz",
"build": "./scripts/generate-wasm.sh local_user_index"
},
"local_group_index": {
"type": "custom",
"candid": "backend/canisters/local_group_index/api/can.did",
"wasm": "wasms/local_group_index.wasm.gz",
"build": "./scripts/generate-wasm.sh local_user_group"
},
"notifications_index": {
"type": "custom",
"candid": "backend/canisters/notifications_index/api/can.did",
"wasm": "wasms/notifications_index.wasm.gz",
"build": "./scripts/generate-wasm.sh notifications_index"
},
"notifications": {
"type": "custom",
"candid": "backend/canisters/notifications/api/can.did",
"wasm": "wasms/notifications.wasm.gz",
"build": "./scripts/generate-wasm.sh notifications"
},
"online_users": {
"type": "custom",
"candid": "backend/canisters/online_users_agg/api/can.did",
"wasm": "wasms/online_users.wasm.gz",
"build": "./scripts/generate-wasm.sh online_users"
},
"proposal_validation": {
"type": "custom",
"candid": "backend/canisters/proposal_validation/api/can.did",
"wasm": "wasms/proposal_validation.wasm.gz",
"build": "./scripts/generate-wasm.sh proposal_validation"
},
"proposals_bot": {
"type": "custom",
"candid": "backend/canisters/proposals_bot/api/can.did",
"wasm": "wasms/proposals_bot.wasm.gz",
"build": "./scripts/generate-wasm.sh proposals_bot"
},
"user": {
"type": "custom",
"candid": "backend/canisters/user/api/can.did",
"wasm": "wasms/user.wasm.gz",
"build": "./scripts/generate-wasm.sh user"
},
"group": {
"type": "custom",
"candid": "backend/canisters/group/api/can.did",
"wasm": "wasms/group.wasm.gz",
"build": "./scripts/generate-wasm.sh group"
},
"storage_index": {
"type": "custom",
"candid": "backend/canisters/storage_index/api/can.did",
"wasm": "wasms/storage_index.wasm.gz",
"build": "./scripts/generate-wasm.sh storage_index"
},
"cycles_dispenser": {
"type": "custom",
"candid": "backend/canisters/cycles_dispenser/api/can.did",
"wasm": "wasms/cycles_dispenser.wasm.gz",
"build": "./scripts/generate-wasm.sh cycles_dispenser"
},
"market_maker": {
"type": "custom",
"candid": "backend/canisters/market_maker/api/can.did",
"wasm": "wasms/market_maker.wasm.gz",
"build": "./scripts/generate-wasm.sh market_maker"
},
"website": {
"source": ["frontend/app/build", "frontend/app/public"],
"type": "assets"
},
"sns_governance": {
"build": "",
"candid": "sns/candid/sns_governance.did",
"type": "custom",
"wasm": ""
},
"sns_index": {
"build": "",
"candid": "sns/candid/sns_index.did",
"type": "custom",
"wasm": ""
},
"sns_ledger": {
"build": "",
"candid": "sns/candid/sns_ledger.did",
"type": "custom",
"wasm": ""
},
"sns_root": {
"build": "",
"candid": "sns/candid/sns_root.did",
"type": "custom",
"wasm": ""
},
"sns_swap": {
"build": "",
"candid": "sns/candid/sns_swap.did",
"type": "custom",
"wasm": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8080",
"type": "ephemeral",
"replica": {
"subnet_type": "system"
}
},
"ic": {
"providers": ["https://ic0.app/"],
"type": "persistent"
},
"ic_test": {
"providers": ["https://ic0.app/"],
"type": "persistent"
},
"web_test": {
"providers": ["https://ic0.app/"],
"type": "persistent"
},
"benchmarklarge": {
"providers": ["https://benchmarklarge.testnet.dfinity.network/"],
"type": "persistent"
},
"large03": {
"providers": ["https://large03.testnet.dfinity.network/"],
"type": "persistent"
}
},
"version": 1
}