-
Notifications
You must be signed in to change notification settings - Fork 22
/
dfx.json
40 lines (40 loc) · 1.16 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
{
"canisters": {
"wasm-utils": {
"type": "custom",
"candid": "service/wasm-utils/wasm-utils.did",
"specified_id": "ozk6r-tyaaa-aaaab-qab4a-cai",
"wasm": "service/wasm-utils/target/wasm32-unknown-unknown/release/wasm_utils.wasm",
"build": ["sh -c 'cd service/wasm-utils && ./build.sh'"],
"metadata": [
{
"name": "candid:service"
}
]
},
"backend": {
"type": "custom",
"dependencies": ["wasm-utils"],
"specified_id": "mwrha-maaaa-aaaab-qabqq-cai",
"build": ["mops-cli build service/pool/Main.mo"],
"candid": "target/pool/pool.did",
"wasm": "target/pool/pool.wasm",
"optimize": "cycles"
},
"saved": {
"type": "custom",
"specified_id": "vhtho-raaaa-aaaab-qadoq-cai",
"build": ["mops-cli build service/saved/Saved.mo"],
"candid": "target/Saved/Saved.did",
"wasm": "target/Saved/Saved.wasm",
"optimize": "cycles"
},
"react_app": {
"dependencies": ["backend", "saved"],
"specified_id": "m7sm4-2iaaa-aaaab-qabra-cai",
"source": ["build"],
"type": "assets"
}
},
"output_env_file": ".env"
}