forked from aliscie/odoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfx.json
executable file
·45 lines (45 loc) · 1.06 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
41
42
43
44
45
{
"canisters": {
"central_canister": {
"candid": "src/central_canister/central_canister.did",
"package": "central_canister",
"type": "rust"
},
"user_canister": {
"candid": "src/user_canister/user_canister.did",
"package": "user_canister",
"type": "rust"
},
"internet_identity": {
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
"type": "custom",
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz"
},
"frontend": {
"dependencies": [
"user_canister"
],
"frontend": {
"entrypoint": "src/frontend/public/index.html"
},
"source": [
"src/frontend/assets",
"build"
],
"type": "assets"
}
},
"defaults": {
"build": {
"output": "canisters",
"packtool": ""
}
},
"version": 1,
"dfx": "0.14.3"
}