-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsvc.json
More file actions
86 lines (86 loc) · 2.34 KB
/
Copy pathsvc.json
File metadata and controls
86 lines (86 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"corpus_version": "14.0.0",
"dev": {
"targets": {
"database": {
"poll_interval": 1,
"probe": {
"argv": ["node", "scripts/probe-database.mjs", "${dev.instance}"],
"cwd": ".",
"kind": "exec",
"output_limit": 2048,
"timeout": 5
},
"provision": {
"argv": ["node", "scripts/database-runtime.mjs", "ensure", "${dev.instance}"],
"cwd": ".",
"env": {
"INKCRE_DATABASE_PROVIDER": "local"
},
"kind": "exec",
"mode": "run"
},
"readiness_timeout": 180,
"scope": "worktree"
},
"web": {
"access": ["https://client-web-${dev.instance}.localhost/"],
"poll_interval": 0.5,
"probe": {
"argv": ["node", "scripts/probe-dev.mjs", "web", "${dev.instance}"],
"cwd": ".",
"kind": "exec",
"output_limit": 1024,
"timeout": 5
},
"provision": {
"argv": ["node", "scripts/dev.mjs", "web"],
"cwd": ".",
"kind": "exec",
"mode": "run"
},
"readiness_timeout": 90,
"scope": "worktree"
},
"web-ui": {
"access": ["https://client-web-ui-${dev.instance}.localhost/"],
"poll_interval": 0.5,
"probe": {
"argv": ["node", "scripts/probe-dev.mjs", "web-ui", "${dev.instance}"],
"cwd": ".",
"kind": "exec",
"output_limit": 1024,
"timeout": 5
},
"provision": {
"argv": ["node", "scripts/dev.mjs", "web-ui"],
"cwd": ".",
"kind": "exec",
"mode": "run"
},
"readiness_timeout": 90,
"scope": "worktree"
},
"webext": {
"access": ["https://webext-${dev.instance}.localhost/popup.html"],
"poll_interval": 0.5,
"probe": {
"argv": ["node", "scripts/probe-dev.mjs", "webext", "${dev.instance}"],
"cwd": ".",
"kind": "exec",
"output_limit": 1024,
"timeout": 5
},
"provision": {
"argv": ["node", "scripts/dev.mjs", "webext"],
"cwd": ".",
"kind": "exec",
"mode": "run"
},
"readiness_timeout": 120,
"scope": "worktree"
}
}
},
"schema_version": 3
}