-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfx.json
31 lines (31 loc) · 1.01 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
{
"canisters": {
"backend": {
"type": "custom",
"build": "npx azle backend",
"root": "canisters/backend",
"ts": "canisters/backend/backend.ts",
"candid": "canisters/backend/backend.did",
"wasm": "target/wasm32-unknown-unknown/release/backend.wasm",
"declarations": {
"output": "canisters/frontend/dfx_generated/backend"
}
},
"frontend": {
"type": "assets",
"source": ["canisters/frontend/build"]
},
"internet_identity": {
"type": "custom",
"build": "",
"candid": "canisters/internet_identity/internet_identity.did",
"wasm": "canisters/internet_identity/internet_identity_test.wasm"
},
"icp_ledger": {
"type": "custom",
"build": "",
"candid": "canisters/icp_ledger/ledger.private.did",
"wasm": "canisters/icp_ledger/ledger.wasm"
}
}
}