-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathdfx.json
More file actions
36 lines (34 loc) · 693 Bytes
/
dfx.json
File metadata and controls
36 lines (34 loc) · 693 Bytes
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
{
"canisters": {
"backend": {
"build": "cargo build --target wasm32-unknown-unknown --package backend --release",
"candid": "backend/backend.did",
"wasm": "target/wasm32-unknown-unknown/release/backend.wasm",
"type": "custom"
},
"frontend" : {
"dependencies": ["backend"],
"frontend": {
"entrypoint": "build/index.html"
},
"source": [
"build"
],
"type": "assets"
}
},
"defaults": {
"build": {
"output": "canisters",
"packtool": ""
}
},
"dfx": "0.7.2",
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}