-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
75 lines (73 loc) · 1.41 KB
/
config.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"bind": [
"127.0.0.1:8080"
],
"databases": {
"test": {
"url": "sqlite://test.db",
"options": {
"try_json": true
}
}
},
"endpoints": [
{
"method": "GET",
"path": "/builds",
"query": {
"transactions": [
{
"db": "test",
"isolation": "none"
}
],
"steps": [
{
"transaction": 0,
"query": "select * from builds",
"map": [
"{ data: . }"
]
}
]
}
},
{
"method": "GET",
"path": "/builds/:id",
"path_params": {
"id": {
"map": [
"tonumber",
"if . <= 0 then error(\"id must be a positive number\") else . end"
]
}
},
"query": {
"transactions": [
{
"db": "test",
"isolation": "none"
}
],
"steps": [
{
"query": "select * from builds where id = ? limit 1",
"args": [
{
"path": "id"
}
],
"map": [ "first" ]
},
{
"query": "select 1234 as artifact_id, 'http://foobar' as artifact_url",
"map": [
"{ data: ({ artifacts: . } * $context.outputs[0]) }"
]
}
]
}
}
]
}