-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
78 lines (78 loc) · 1.93 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
76
77
78
{
"services": [
{
"id": 1,
"name": "TestService",
"port": 3333,
"endpoints": [
{
"id": 1,
"name": "root",
"uri": "/",
"method": "GET",
"echo" : false,
"contentType": "application/json; charset=UTF-8",
"request": "",
"response": "\n{\"message\": \"Welome\"}\n"
},
{
"id": 2,
"name": "hello",
"uri": "/hello",
"method": "GET",
"echo" : false,
"contentType": "application/json; charset=UTF-8",
"request": "",
"response": "\n{\"message\": \"Hello World!\"}\n"
}
]
},
{
"id": 2,
"name": "Mock Server 2",
"port": 4444,
"endpoints": [
{
"id": 1,
"name": "root",
"uri": "/",
"method": "GET",
"echo" : false,
"contentType": "application/json; charset=UTF-8",
"request": "",
"response": "\n{\"message\": \"Hi there!\"}\n"
},
{
"id": 2,
"name": "test",
"uri": "/test",
"method": "GET",
"echo" : false,
"contentType": "application/json; charset=UTF-8",
"request": "",
"response": "\n{\"message\": \"Test test ..\"}\n"
},
{
"id": 3,
"name": "test post",
"uri": "/submit",
"method": "POST",
"echo" : false,
"contentType": "application/json; charset=UTF-8",
"request": "{\"name\":\"Joe\"}",
"response": "\n{\"name\":\"Joe\"}\n"
},
{
"id": 4,
"name": "test",
"uri": "/test",
"method": "POST",
"echo" : false,
"contentType": "application/json; charset=UTF-8",
"request": "",
"response": "\n{\"message\": \"Test test ..\"}\n"
}
]
}
]
}