-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.json
89 lines (89 loc) · 2.33 KB
/
project.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
87
88
89
{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/v3-subgraph/src",
"projectType": "application",
"targets": {
"build": {
"executor": "nx:run-commands",
"options": {
"command": "pwd",
"cwd": "apps/v3-subgraph"
}
},
"serve": {
"executor": "@alexkeating/nx-subgraph:serve",
"options": {
"daemonMode": true,
"composePath": "docker-compose.yml"
}
},
"stop": {
"executor": "nx:run-commands",
"options": {
"command": "docker compose kill",
"cwd": "apps/v3-subgraph"
}
},
"deployLocal": {
"executor": "nx:run-commands",
"options": {
"command": "graph deploy v3-subgraph --node http://127.0.0.1:8020 --ipfs http://localhost:5001",
"cwd": "apps/v3-subgraph"
}
},
"create": {
"executor": "nx:run-commands",
"options": {
"command": "graph create daohaus-v3-subgraph --node http://127.0.0.1:8020",
"cwd": "apps/daohaus-v3-subgraph"
}
},
"generate-config": {
"executor": "nx:run-commands",
"options": {
"commands": [
{
"command": "node manifests/deploy-prep.js {args.network}",
"forwardAllArgs": true
}
],
"cwd": "apps/v3-subgraph"
}
},
"generate-code": {
"executor": "nx:run-commands",
"options": {
"commands": ["graph codegen", "graph build"],
"cwd": "apps/v3-subgraph",
"parallel": false
}
},
"graph-deploy": {
"executor": "nx:run-commands",
"options": {
"commands": [
{
"command": "node manifests/deploy-prep.js {args.network} && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ {args.name}",
"forwardAllArgs": true
}
],
"cwd": "apps/v3-subgraph",
"parallel": false
}
},
"graph-deploy-studio": {
"executor": "nx:run-commands",
"options": {
"commands": [
{
"command": "node manifests/deploy-prep.js {args.network} && graph deploy --studio {args.name}",
"forwardAllArgs": true
}
],
"cwd": "apps/v3-subgraph",
"parallel": false
}
}
},
"tags": []
}