-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdfx.json
34 lines (34 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
{
"canisters": {
"heartbeat": {
"type": "custom",
"build": "npm run azle heartbeat",
"root": "azle/src",
"ts": "azle/src/heartbeat.ts",
"candid": "azle/src/heartbeat.did",
"wasm": "azle/target/wasm32-unknown-unknown/release/heartbeat.wasm.gz"
},
"react": {
"frontend": {
"entrypoint": "react/build/index.html"
},
"source": ["react/build/"],
"type": "assets"
},
"react-ticker": {
"frontend": {
"entrypoint": "react-ticker/build/index.html"
},
"source": ["react-ticker/build/"],
"type": "assets"
},
"ticker2": {
"type": "custom",
"build": "npm run azle ticker1",
"root": "src",
"ts": "azle/src/ticker2.ts",
"candid": "azle/src/ticker2.did",
"wasm": "azle/target/wasm32-unknown-unknown/release/ticker1.wasm.gz"
}
}
}