forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devfile.yaml
75 lines (74 loc) · 2.07 KB
/
devfile.yaml
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
# A devfile to setup Theia project in Che.
# For developers who work on Theia core.
apiVersion: 1.0.0
metadata:
generateName: theia-dev-
projects:
- name: theia
source:
type: git
location: "https://github.com/eclipse-theia/theia.git"
components:
- alias: che-dev
type: dockerimage
image: "quay.io/eclipse/che-theia-dev:next"
mountSources: true
endpoints:
- name: "theia-dev-flow"
port: 3000
attributes:
protocol: http
public: "true"
memoryLimit: "3.5Gi"
- id: vscode/typescript-language-features/latest
type: chePlugin
memoryLimit: 2048M
- type: cheEditor
alias: theia-editor
id: eclipse/che-theia/latest
memoryLimit: "1Gi"
commands:
- name: >
theia: Build Sources
actions:
- type: exec
component: che-dev
command: >
killall node;
yarn && yarn download:plugins && yarn build:examples
workdir: /projects/theia
- name: >
theia: Launch Browser Backend
actions:
- type: exec
component: che-dev
command: >
test -f /tmp/node_theiadev.pid && kill `cat /tmp/node_theiadev.pid`;
mkdir -p /tmp/theiadev_projects &&
export NODE_ENV=development &&
node src-gen/backend/main.js /tmp/theiadev_projects --hostname=0.0.0.0 --port=3000 --no-cluster --plugins=/projects/theia/plugins --hosted-plugin-inspect=9339 & echo $!> /tmp/node_theiadev.pid ; wait `cat /tmp/node_theiadev.pid`
workdir: /projects/theia/examples/browser
- name: >
theia: Watch Core Packages
actions:
- type: exec
component: che-dev
command: >
yarn watch:compile
workdir: /projects/theia
- name: >
theia: Watch Browser Example
actions:
- type: exec
component: che-dev
command: >
yarn browser watch
workdir: /projects/theia/examples/browser
- name: >
theia: Watch All
actions:
- type: exec
component: che-dev
command: >
yarn watch
workdir: ${workspaceRoot}/theia