-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdfx.json
39 lines (39 loc) · 875 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
{
"canisters": {
"storage": {
"main":"src/backend/storage/Container.mo",
"type":"motoko"
},
"bucket":{
"main":"src/backend/storage/Buckets.mo",
"type":"motoko"
},
"graphql": {
"type": "custom",
"build": "./build_graphql.sh",
"candid": "src/backend/graphql/src/graphql.did",
"wasm": "target/wasm32-unknown-unknown/release/graphql-opt.wasm"
},
"playground": {
"dependencies": ["graphql"],
"type": "assets",
"source": ["src/backend/playground/build"]
},
"assets": {
"dependencies": ["storage","bucket"],
"frontend": {
"entrypoint": "dist/index.html"
},
"source": ["dist/"],
"type": "assets"
}
},
"dfx": "0.8.4",
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}