-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfx.json
More file actions
39 lines (39 loc) · 1.19 KB
/
dfx.json
File metadata and controls
39 lines (39 loc) · 1.19 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
{
"canisters": {
"encrypted_notes": {
"main": "backend/main.mo",
"type": "motoko",
"args": "--enhanced-orthogonal-persistence",
"init_arg": "(\"test_key_1\")"
},
"internet-identity": {
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"type": "custom",
"specified_id": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz"
},
"www": {
"dependencies": ["encrypted_notes", "internet-identity"],
"build": [
"cd frontend && npm i --include=dev && npm run build && cd - && rm -r public > /dev/null 2>&1; cp -r frontend/public ./"
],
"frontend": {
"entrypoint": "public/index.html"
},
"source": ["public/"],
"type": "assets",
"output_env_file": "frontend/.env"
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
}
}