-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
46 lines (46 loc) · 916 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"canisters": {
"hub": {
"type": "motoko",
"main": "./src/hub/main.mo"
},
"avatar": {
"type": "motoko",
"main": "./src/avatar/main.mo"
},
"accessories": {
"type": "motoko",
"main": "./src/accessories/main.mo"
},
"invoice": {
"type": "motoko",
"main": "./src/invoice/main.mo"
},
"ledger": {
"type": "custom",
"candid": "src/ledger/ledger.public.did",
"wasm": "src/ledger/ledger.wasm"
},
"website": {
"frontend": {
"entrypoint": "./src/website/dist/index.html"
},
"source": ["./src/website/dist/"],
"type": "assets"
}
},
"defaults": {
"build": {
"args": "--hide-warnings",
"packtool": "vessel sources"
}
},
"dfx": "0.11.2",
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}