-
Notifications
You must be signed in to change notification settings - Fork 2
/
dfx.json
57 lines (57 loc) · 1.29 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
51
52
53
54
55
56
57
{
"canisters": {
"candymachine_dip721": {
"package": "candymachine_rust_dip721",
"candid": "canisters/candymachine_rust_dip721/src/main.did",
"type": "rust"
},
"candymachine": {
"dependencies": [
"candymachine_dip721"
],
"type": "custom",
"build": "npx azle candymachine",
"root": "canisters/candymachine",
"ts": "canisters/candymachine/main.ts",
"candid": "canisters/candymachine/main.did",
"wasm": "target/wasm32-unknown-unknown/release/candymachine.wasm.gz"
},
"candymachine_assets": {
"dependencies": [
"candymachine",
"candymachine_dip721"
],
"frontend": {
"entrypoint": "canisters/candymachine_assets/src/index.html"
},
"source": [
"canisters/candymachine_assets/assets",
"dist/candymachine_assets/"
],
"type": "assets"
},
"asset_canister": {
"dependencies": [
"candymachine_assets"
],
"source": [
"canisters/asset_canister/assets"
],
"type": "assets"
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"dfx": "0.10.0",
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}