-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfx.json
More file actions
31 lines (31 loc) · 780 Bytes
/
dfx.json
File metadata and controls
31 lines (31 loc) · 780 Bytes
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
{
"version": 1,
"canisters": {
"example": {
"type": "motoko",
"main": "src/canisters/example.mo"
},
"system": {
"type": "motoko",
"main": "src/canisters/systemExample.mo"
},
"migratable_v1": {
"type": "motoko",
"main": "src/canisters/migratableExample_v1.mo"
},
"migratable_v2": {
"type": "motoko",
"main": "src/canisters/migratableExample_v2.mo"
},
"migratable_v2_post": {
"type": "motoko",
"main": "src/canisters/migratableExample_v2_post.mo"
}
},
"defaults": {
"build": {
"packtool": "mops sources",
"args": ""
}
}
}