-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
86 lines (86 loc) · 1.98 KB
/
turbo.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local", "**/.env"],
"pipeline": {
"clean": {
"cache": false,
"persistent": false
},
"test": { "outputs": ["forge-cache/**", "out/**"] },
"lint": {},
"build": {
"outputs": [
"dist/**",
".next/**",
"public/dist/**",
"services/loans/subgraph/subgraph.yaml",
"services/loans/subgraph/src/generated/types/**"
],
"dependsOn": ["^build"],
"env": [
"ACCOUNTS_PORT_V1",
"CUSTOMERS_PORT_V1",
"LOANS_PORT_V1",
"NEXT_PUBLIC_ACCOUNTS_PORT_V1",
"NEXT_PUBLIC_CUSTOMERS_PORT_V1",
"NEXT_PUBLIC_LOANS_PORT_V1",
"NEXT_PUBLIC_REQUESTS_PORT_V1",
"NODE_ENV",
"REQUESTS_PORT_V1"
]
},
"compile": {
"outputs": ["types/**"],
"persistent": false
},
"deploy:contracts": {
"cache": false,
"outputs": ["deployments/**"],
"persistent": false,
"dependsOn": ["^build"]
},
"share": {
"cache": false,
"outputs": ["config/**", "generated/**"],
"persistent": false,
"dependsOn": ["^build"]
},
"start:chain": {
"cache": false,
"persistent": true
},
"populate": {
"cache": false,
"dependsOn": ["^deploy:contracts"]
},
"dev": {
"cache": false,
"dependsOn": ["^build"],
"persistent": true,
"env": [
"ACCOUNTS_PORT_V1",
"CUSTOMERS_PORT_V1",
"LOANS_PORT_V1",
"NEXT_PUBLIC_ACCOUNTS_PORT_V1",
"NEXT_PUBLIC_CUSTOMERS_PORT_V1",
"NEXT_PUBLIC_LOANS_PORT_V1",
"NEXT_PUBLIC_REQUESTS_PORT_V1",
"NODE_ENV",
"REQUESTS_PORT_V1"
]
},
"start": {
"cache": false,
"dependsOn": ["^start"],
"persistent": true
},
"prepare:graph": {
"cache": false,
"persistent": false
},
"stop": {
"cache": false,
"persistent": false
}
}
}