-
Notifications
You must be signed in to change notification settings - Fork 3
/
dfx.json
43 lines (43 loc) · 915 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
{
"canisters": {
"fortune_cookie_backend": {
"main": "src/fortune_cookie_backend/main.mo",
"type": "motoko",
"dependencies": [
"ckbtc_ledger"
]
},
"ckbtc_ledger" : {
"type" : "custom",
"candid" : "icrc1.public.did",
"wasm" : "icrc1.wasm",
"remote": {
"candid": "icrc1.public.did",
"id": {
"ic" : "mxzaz-hqaaa-aaaar-qaada-cai"
}
}
},
"fortune_cookie_frontend": {
"dependencies": [
"fortune_cookie_backend"
],
"frontend": {
"entrypoint": "src/fortune_cookie_frontend/src/index.html"
},
"source": [
"src/fortune_cookie_frontend/assets",
"dist/fortune_cookie_frontend/"
],
"type": "assets"
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"output_env_file": ".env",
"version": 1
}