-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdfx.json
60 lines (60 loc) · 1.12 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
{
"canisters": {
"signer": {
"frontend": {
"entrypoint": "examples/react-signer/dist/index.html"
},
"source": [
"examples/react-signer/dist/"
],
"type": "assets"
},
"dapp": {
"frontend": {
"entrypoint": "examples/react-dapp/dist/index.html"
},
"source": [
"examples/react-dapp/dist/"
],
"type": "assets"
},
"docs": {
"frontend": {
"entrypoint": "docs/out/index.html"
},
"source": ["docs/out"],
"type": "assets"
},
"signer-backend": {
"candid": "examples/signer-backend/signer-backend.did",
"package": "signer-backend",
"type": "rust",
"optimize": "cycles"
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
},
"ic": {
"providers": [
"https://icp0.io"
],
"type": "persistent"
},
"dev": {
"providers": [
"https://icp0.io"
],
"type": "persistent"
}
},
"version": 1
}