forked from badlabs/tradebot-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
render.yaml
42 lines (41 loc) · 1.06 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
services:
- name: stubb0t
type: web
env: node
region: frankfurt
buildCommand: npm install && npx turbo run @tradeb0t/core#build
startCommand: npx turbo run stubb0t#start
envVars:
- key: NODE_VERSION
value: 16.15.0
- key: NODE_ENV
value: development
- key: DEMO_STUB_TOKEN
value: qwerty123
buildFilter:
paths:
- packages/core/src/**/*.ts
- apps/stubb0t/src/**/*.ts
- name: tradeb0t-dashboard
type: web
env: node
region: frankfurt
buildCommand: npm install && npx turbo run @tradeb0t/dashboard#build
startCommand: npx turbo run @tradeb0t/dashboard#start
envVars:
- key: NODE_VERSION
value: 16.15.0
- key: DEMO_STUB_HOST
fromService:
name: stubb0t
type: web
property: host
- key: DEMO_STUB_PORT
value: 80
- key: DEMO_STUB_TOKEN
value: qwerty123
buildFilter:
paths:
- packages/core/src/**/*.ts
- apps/dashboard/src/**/*.ts
- apps/dashboard/src/**/*.tsx