-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfx.json
50 lines (50 loc) · 1.04 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
46
47
48
49
50
{
"canisters": {
"w3messenger_backend": {
"main": "src/w3messenger_backend/main.mo",
"type": "motoko"
},
"myAccount": {
"main": "src/my_account/myAccount.mo",
"type": "motoko"
},
"w3messenger_frontend": {
"dependencies": [
"w3messenger_backend"
],
"frontend": {
"entrypoint": "src/w3messenger_frontend/src/index.html"
},
"source": [
"src/w3messenger_frontend/assets",
"dist/w3messenger_frontend/"
],
"type": "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": ""
}
},
"dfx": "0.12.1",
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}