-
Notifications
You must be signed in to change notification settings - Fork 138
/
dfx.json
33 lines (33 loc) · 1.05 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
{
"canisters": {
"internet_identity": {
"type": "custom",
"candid": "src/internet_identity/internet_identity.did",
"wasm": "internet_identity.wasm.gz",
"build": "bash -c 'II_DEV_CSP=1 II_FETCH_ROOT_KEY=1 II_DUMMY_CAPTCHA=${II_DUMMY_CAPTCHA:-1} scripts/build'",
"init_arg": "(opt record { captcha_config = opt record { max_unsolved_captchas= 50:nat64; captcha_trigger = variant {Static = variant {CaptchaDisabled}}}})",
"shrink" : false
},
"test_app": {
"type": "custom",
"candid": "demos/test-app/test_app.did",
"wasm": "demos/test-app/test_app.wasm",
"build": "demos/test-app/build.sh"
},
"issuer": {
"type": "custom",
"candid": "demos/vc_issuer/vc_demo_issuer.did",
"wasm": "demos/vc_issuer/vc_demo_issuer.wasm.gz",
"build": "demos/vc_issuer/build.sh",
"post_install": "bash -c 'demos/vc_issuer/provision'",
"dependencies": [ "internet_identity" ]
}
},
"defaults": {
"build": {
"packtool": ""
}
},
"dfx": "0.24.1",
"version": 1
}