-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-server-config.yaml
More file actions
42 lines (40 loc) · 902 Bytes
/
api-server-config.yaml
File metadata and controls
42 lines (40 loc) · 902 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
32
33
34
35
36
37
38
39
40
41
42
requires:
plugins:
- name: workflow-plugin-http
modules:
- name: api-http-server
type: http.server
config:
address: ":8080"
- name: api-router
type: http.router
- name: users-handler
type: http.handler
config:
contentType: application/json
- name: products-handler
type: http.handler
config:
contentType: application/json
- name: health-handler
type: http.handler
config:
contentType: application/json
workflows:
http:
routes:
- method: GET
path: /api/users
handler: users-handler
- method: POST
path: /api/users
handler: users-handler
- method: GET
path: /api/products
handler: products-handler
- method: POST
path: /api/products
handler: products-handler
- method: GET
path: /health
handler: health-handler