-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdfx.json
More file actions
43 lines (43 loc) · 1.19 KB
/
dfx.json
File metadata and controls
43 lines (43 loc) · 1.19 KB
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": {
"basic_timelock_ibe": {
"candid": "backend/backend.did",
"package": "ic-vetkd-example-basic-timelock-ibe-backend",
"type": "rust",
"init_arg": "(\"test_key_1\")",
"metadata": [
{
"name": "candid:service",
"visibility": "public"
}
]
},
"internet-identity": {
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"type": "custom",
"specified_id": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz"
},
"www": {
"dependencies": ["basic_timelock_ibe", "internet-identity"],
"build": ["cd frontend && npm i --include=dev && npm run build"],
"frontend": {
"entrypoint": "frontend/dist/index.html"
},
"source": ["frontend/dist/"],
"type": "assets",
"output_env_file": "frontend/.env"
}
},
"networks": {
"local": {
"bind": "localhost:8000",
"type": "ephemeral"
}
}
}