-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.json
52 lines (52 loc) · 1.33 KB
/
demo.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
{
"title": "httpbin demo",
"stepsPosition": 1,
"sites": {
"webnull": {
"title": "httpbin",
"url": "http://httpbin.org/",
"position": 0
}
},
"processes": {
"bash": {
"title": "bash",
"command": ["bash"],
"dir": "",
"position": 2,
"exitInput": "exit"
}
},
"steps": [
{
"title": "Demo of httpbin",
"desc": "This demo shows some things that you can do with httpbin.",
"id": "",
"input": ""
},
{
"title": "Get your IP address",
"desc": "Returns the origin IP address",
"id": "bash",
"input": "curl -s http://httpbin.org/ip"
},
{
"title": "Get a UUID4",
"desc": "Returns a new UUID.",
"id": "bash",
"input": "curl -s http://httpbin.org/uuid"
},
{
"title": "Get some XML",
"desc": "Returns some XML.",
"id": "bash",
"input": "curl -s http://httpbin.org/xml"
},
{
"title": "Summary",
"desc": "Try some commands of your own, based on the documentation above!",
"id": "",
"input": ""
}
]
}