-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdfx.json
More file actions
57 lines (55 loc) · 1.75 KB
/
dfx.json
File metadata and controls
57 lines (55 loc) · 1.75 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
{
"canisters": {
"fraktal-main": {
"type": "azle",
"main": "src/backend/index.ts",
"specified_id": "br5f7-7uaaa-aaaaa-qaaca-cai",
"custom": {
"experimental": true,
"assets": [
["src/frontend/dist", "dist"],
["src/scripts", "scripts"]
],
"env": [
"CANISTER_ID_fraktal_main",
"CANISTER_ID_database",
"CANISTER_ID_execution_engine"
],
"build_assets": "npm run build"
}
},
"database": {
"type": "azle",
"main": "src/database/index.ts",
"specified_id": "be2us-64aaa-aaaaa-qaabq-cai",
"custom": {
"experimental": true,
"env": [
"CANISTER_ID_fraktal_main",
"CANISTER_ID_database",
"CANISTER_ID_execution_engine"
]
}
},
"execution-engine": {
"type": "azle",
"main": "src/execution-engine/index.ts",
"specified_id": "bkyz2-fmaaa-aaaaa-qaaaq-cai",
"custom": {
"experimental": true,
"assets": [
["src/scripts", "scripts"]
],
"env": [
"CANISTER_ID_fraktal_main",
"CANISTER_ID_database",
"CANISTER_ID_execution_engine",
"SENDGRID_API_KEY",
"GROQ_AI_API_KEY",
"COIN_CAP_API_KEY",
"CHAINBASE_API_KEY"
]
}
}
}
}