-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdfx.json
executable file
·47 lines (46 loc) · 1023 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
44
45
46
47
{
"declarations": {
"output": "src/declarations",
"capabilities": [
"nodejs"
]
},
"canisters": {
"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"
},
"backend": {
"candid": "src/backend/backend.did",
"package": "backend",
"type": "rust"
},
"frontend": {
"dependencies": [
"backend"
],
"frontend": {
"entrypoint": "src/frontend/public/index.html"
},
"source": [
"src/frontend/assets",
"build"
],
"type": "assets"
}
},
"defaults": {
"build": {
"output": "canisters",
"packtool": ""
}
},
"version": 1,
"dfx": "0.17.0"
}