-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathci.yml
More file actions
31 lines (31 loc) · 722 Bytes
/
ci.yml
File metadata and controls
31 lines (31 loc) · 722 Bytes
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
schemaVersion: v0.2
# Default CI configuration - use ci.dev.yml, ci.qa.yml, or ci.prod.yml for specific environments
prepare:
steps:
- name: install frontend dependencies
command: cd frontend && npm install
- name: install backend dependencies
command: cd backend && npm install
test:
steps: []
run:
frontend:
steps:
- name: start frontend application
command: "cd frontend && npm start"
plan: 8
replicas: 1
isPublic: true
network:
path: /
stripPath: false
api:
steps:
- name: deploy api endpoints
command: cd backend && npm start
plan: 8
replicas: 1
isPublic: true
network:
path: /api
stripPath: true