-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdfx.json
More file actions
63 lines (61 loc) · 1.86 KB
/
Copy pathdfx.json
File metadata and controls
63 lines (61 loc) · 1.86 KB
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
58
59
60
61
62
63
{
"version": 1,
"dfx": "0.27.0",
"canisters": {
"frontend": {
"type": "assets",
"source": [
"src/frontend/dist"
],
"dependencies": [
"user_registry",
"calendar_canister_1",
"scheduling_canister",
"notification_canister"
]
},
"user_registry": {
"type": "motoko",
"main": "src/backend/user_registry/UserRegistry.mo"
},
"calendar_canister_1": {
"type": "motoko",
"main": "src/backend/calendar/CalendarCanister.mo"
},
"scheduling_canister": {
"type": "motoko",
"main": "src/backend/scheduling/SchedulingCanister.mo"
},
"notification_canister": {
"type": "motoko",
"main": "src/backend/notification/NotificationCanister.mo"
},
"internet_identity": {
"__0": "The development build of Internet Identity. For more information, see https://github.com/dfinity/internet-identity#build-features-and-flavors",
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz",
"frontend": {},
"__1": "This init arg will disable the captcha during registration",
"init_arg": "(opt record { captcha_config = opt record { max_unsolved_captchas= 50:nat64; captcha_trigger = variant {Static = variant {CaptchaDisabled}}}})",
"__2": "The remote block indicates that this canister is only used locally and should not be deployed on the IC.",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
}
}
},
"defaults": {
"build": {
"packtool": "",
"args": ""
}
},
"networks": {
"local": {
"bind": "localhost:8000",
"type": "ephemeral"
}
}
}