-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathproject.json
More file actions
63 lines (63 loc) · 1.55 KB
/
project.json
File metadata and controls
63 lines (63 loc) · 1.55 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
58
59
60
61
62
63
{
"$schema": "./node_modules/nx/schemas/project-schema.json",
"name": "flow",
"root": ".",
"projectType": "application",
"targets": {
"stop-all": {
"executor": "nx:run-commands",
"options": {
"commands": [
"nx run back-end:stop",
"nx run back-end:docker-down",
"nx run user-interface:stop"
],
"parallel": true,
"env": {
"NODE_NO_WARNINGS": "1"
}
}
},
"start-all": {
"executor": "nx:run-commands",
"options": {
"commands": [
{ "command": "nx run back-end:docker-up", "prefix": "[docker]", "color": "blue" },
{ "command": "nx run back-end:run-node", "prefix": "[node]", "color": "green" },
{ "command": "nx run user-interface:dev-web", "prefix": "[web]", "color": "cyan" }
],
"parallel": true,
"env": {
"NODE_NO_WARNINGS": "1"
}
}
},
"start": {
"executor": "nx:run-commands",
"options": {
"commands": [
"nx run back-end:docker-up",
"nx run back-end:run-node &",
"nx run user-interface:dev-web"
],
"parallel": false,
"env": {
"NODE_NO_WARNINGS": "1"
}
}
},
"docker-up": {
"executor": "nx:run-commands",
"options": {
"command": "nx run back-end:docker-up"
}
},
"docker-down": {
"executor": "nx:run-commands",
"options": {
"command": "nx run back-end:docker-down"
}
}
},
"tags": ["workspace"]
}