forked from ctron/hono-example-demo-gauge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.factory.json
113 lines (113 loc) · 2.67 KB
/
.factory.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"v": "4.0",
"name": "hone-example-demo-gauge",
"workspace": {
"defaultEnv": "default",
"environments": {
"default": {
"machines": {
"dev-machine": {
"attributes": {
"memoryLimitBytes": "2147483648"
},
"servers": {
"5000/tcp": {
"attributes": {},
"port": "5000",
"protocol": "http"
},
"3000/tcp": {
"attributes": {},
"port": "3000",
"protocol": "http"
},
"9000/tcp": {
"attributes": {},
"port": "9000",
"protocol": "http"
},
"nodejs": {
"attributes": {},
"port": "8080",
"protocol": "http"
}
},
"volumes": {},
"installers": [
"org.eclipse.che.exec",
"org.eclipse.che.terminal",
"org.eclipse.che.ws-agent",
"org.eclipse.che.git-credentials",
"org.eclipse.che.ls.js-ts"
],
"env": {}
}
},
"recipe": {
"type": "dockerimage",
"content": "eclipse/node"
}
}
},
"projects": [
{
"links": [],
"name": "hono-example-demo-gauge",
"attributes": {},
"type": "typescript",
"source": {
"location": "https://github.com/ctron/hono-example-demo-gauge.git",
"type": "git",
"parameters": {
"branch": "master",
"keepVcs": "true"
}
},
"path": "/hono-example-demo-gauge",
"problems": [],
"mixins": [
"pullrequest"
]
}
],
"name": "hono-example-demo-gauge",
"commands": [
{
"commandLine": "cd hono-example-demo-gauge\nnpm run build-ts\nnpm start",
"name": "buildAndRun",
"attributes": {
"goal": "Run",
"previewUrl": "${server.nodejs}"
},
"type": "custom"
},
{
"commandLine": "cd hono-example-demo-gauge\nnpm install",
"name": "install",
"attributes": {
"goal": "Build"
},
"type": "custom"
}
],
"links": []
},
"ide": {
"onProjectsLoaded": {
"actions": [
{
"properties": {
"name": "install"
},
"id": "runCommand"
},
{
"id": "openFile",
"properties": {
"file": "/hono-example-demo-gauge/index.ts"
}
}
]
}
}
}