-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathdfx.json
43 lines (43 loc) · 951 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
{
"canisters": {
"wasm-utils": {
"type": "custom",
"candid": "service/wasm-utils/wasm-utils.did",
"wasm": "service/wasm-utils/target/wasm32-unknown-unknown/release/wasm_opt.wasm",
"build": ["sh -c 'cd service/wasm-utils && ./build.sh'"]
},
"backend": {
"dependencies": ["wasm-utils"],
"main": "service/pool/Main.mo",
"type": "motoko"
},
"saved": {
"main": "service/saved/Saved.mo",
"type": "motoko"
},
"react_app": {
"dependencies": ["backend", "saved"],
"frontend": {
"entrypoint": "public/index.html"
},
"source": ["build"],
"type": "assets"
}
},
"defaults": {
"build": {
"output": "build",
"packtool": "vessel sources"
},
"start": {
"address": "localhost",
"port": 8000
}
},
"networks": {
"local": {
"bind": "localhost:8000",
"type": "ephemeral"
}
}
}