-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrender.yaml
55 lines (51 loc) · 1.44 KB
/
render.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
services:
- type: web
name: iris
runtime: node
buildCommand: yarn install && yarn nx build iris --prod
startCommand: yarn nx run iris:serve:production --port=$PORT --hostname=0.0.0.0
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 4200
- type: web
name: leaf
runtime: node
buildCommand: yarn install && yarn nx build leaf --prod
startCommand: yarn nx run leaf:serve:production --port=$PORT --hostname=0.0.0.0
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 4201
- type: web
name: lily
runtime: node
buildCommand: yarn install && yarn nx build lily --prod
startCommand: yarn nx run lily:serve:production --port=$PORT --hostname=0.0.0.0
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 4202
- type: web
name: petal
runtime: node
buildCommand: yarn install && yarn nx build petal --prod
startCommand: yarn nx run petal:serve:production --port=$PORT --hostname=0.0.0.0
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 4203
- type: web
name: tulip
runtime: node
buildCommand: yarn install && yarn nx build tulip --prod
startCommand: yarn nx run tulip:serve:production --port=$PORT --hostname=0.0.0.0
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 4204