-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathrender.yaml
More file actions
40 lines (38 loc) · 1.01 KB
/
render.yaml
File metadata and controls
40 lines (38 loc) · 1.01 KB
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
services:
- name: bpmn-assistant-api
type: web
runtime: docker
repo: https://github.com/jtlicardo/bpmn-assistant
branch: main
dockerfilePath: src/bpmn_assistant/Dockerfile
plan: free
region: frankfurt
envVars:
- key: PORT
value: "10000"
healthCheckPath: /
- name: bpmn-layout-server
type: web
runtime: docker
repo: https://github.com/jtlicardo/bpmn-assistant
branch: main
dockerfilePath: src/bpmn_layout_server/Dockerfile
plan: free
region: frankfurt
envVars:
- key: PORT
value: "10000"
healthCheckPath: /
- name: bpmn-frontend
type: web
runtime: static
repo: https://github.com/jtlicardo/bpmn-assistant
branch: main
rootDir: src/bpmn_frontend
buildCommand: npm ci && npm run build
staticPublishPath: dist
envVars:
- key: VITE_API_BASE_URL
value: https://bpmn-assistant-api.onrender.com
- key: VITE_LAYOUT_BASE_URL
value: https://bpmn-layout-server.onrender.com