-
Notifications
You must be signed in to change notification settings - Fork 4
/
dfx.json
44 lines (44 loc) · 848 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": {
"bookworm": {
"main": "src/bookworm/main.mo",
"type": "motoko"
},
"bookworm_assets": {
"dependencies": [
"bookworm"
],
"frontend": {
"entrypoint": "src/bookworm_assets/public/index.js",
"output": "canisters/bookworm_assets/assets"
},
"source": [
"src/bookworm_assets/assets"
],
"type": "assets"
}
},
"defaults": {
"build": {
"output": "canisters/",
"packtool": ""
},
"start": {
"address": "127.0.0.1",
"port": 8000,
"serve_root": "canisters/bookworm_assets/assets"
}
},
"dfx": "0.5.10",
"networks": {
"local": {
"bind": "127.0.0.1:8000"
},
"tungsten": {
"providers": [
"https://gateway.dfinity.systems"
]
}
},
"version": 1
}