-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdfx.json
44 lines (44 loc) · 1.15 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
34
35
36
37
38
39
40
41
42
43
44
{
"version": 1,
"dfx": "0.19.0",
"canisters": {
"backend": {
"type": "custom",
"main": "backend/index.ts",
"candid": "backend/index.did",
"candid_gen": "automatic",
"build": "npx azle backend",
"wasm": ".azle/backend/backend.wasm",
"gzip": true,
"assets": [["backend/database/migrations", "migrations"]],
"metadata": [
{
"name": "candid:service",
"path": "backend/index.did"
},
{
"name": "cdk:name",
"content": "azle"
}
]
},
"frontend": {
"type": "assets",
"dependencies": ["backend"],
"frontend": {
"entrypoint": "frontend/build/index.html"
},
"source": ["frontend/build"]
},
"internet-identity": {
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/download/release-2023-09-08/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/download/release-2023-09-08/internet_identity_dev.wasm.gz",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
}
}
}
}