forked from TaggrNetwork/Taggr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
31 lines (31 loc) · 853 Bytes
/
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
{
"canisters": {
"taggr": {
"candid": "src/backend/taggr.did",
"package": "taggr",
"type": "custom",
"wasm": "target/wasm32-unknown-unknown/release/taggr.wasm.gz",
"build": "./build.sh taggr",
"metadata": [
{
"name": "candid:service",
"networks": ["local", "ic"],
"visibility": "public"
}
]
}
},
"networks": {
"staging": {
"config": {
"FETCH_ROOT_KEY": true,
"API_HOST": "https://icp-api.io",
"STATIC_HOST": "https://icp0.io"
},
"providers": ["https://icp-api.io/"],
"type": "persistent"
}
},
"dfx": "0.16.1",
"version": 1
}