-
Notifications
You must be signed in to change notification settings - Fork 1
/
render.yaml
54 lines (49 loc) · 1.7 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
services:
# A webhook service for staging
- type: web
name: javascript-webhook-staging
env: node
repo: https://github.com/transcend-io/examples
buildCommand: cd javascript && yarn
startCommand: cd javascript && yarn && yarn start
healthCheckPath: /health
# A webhook service for staging - Patreon organization
- type: web
name: javascript-webhook-staging-patreon
env: node
repo: https://github.com/transcend-io/examples
buildCommand: cd javascript && yarn
startCommand: cd javascript && yarn && yarn start
healthCheckPath: /health
# A webhook service for dev
- type: web
name: javascript-webhook-dev
env: node
repo: https://github.com/transcend-io/examples
buildCommand: cd javascript && yarn
startCommand: cd javascript && yarn && yarn start
healthCheckPath: /health
# A webhook service for staging - Patreon organization
- type: web
name: javascript-webhook-dev-patreon
env: node
repo: https://github.com/transcend-io/examples
buildCommand: cd javascript && yarn
startCommand: cd javascript && yarn && yarn start
healthCheckPath: /health
# A webhook service for production
- type: web
name: javascript-webhook-prod
env: node
repo: https://github.com/transcend-io/examples
buildCommand: cd javascript && yarn
startCommand: cd javascript && yarn && yarn start
healthCheckPath: /health
# A webhook service for production - Rideshare organization
- type: web
name: javascript-webhook-prod-rideshare
env: node
repo: https://github.com/transcend-io/examples
buildCommand: cd javascript && yarn
startCommand: cd javascript && yarn && yarn start
healthCheckPath: /health