-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdfx.json
44 lines (43 loc) · 886 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
{
"canisters": {
"avatar_assets": {
"dependencies": ["internet-identity"],
"frontend": {
"entrypoint": "src/avatar_assets/src/index.html"
},
"source": [
"dist/avatar_assets/"
],
"type": "assets"
},
"avatar": {
"main": "src/avatar/main.mo",
"type": "motoko",
"dependencies": ["avatar_assets"]
},
"internet-identity": {
"type": "custom",
"wasm": "src/internet-identity/internet-identity.wasm",
"build": [],
"candid": "src/internet-identity/internet-identity.did",
"remote": {
"id": {
"ic": "fgte5-ciaaa-aaaad-aaatq-cai"
}
}
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}