-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal-test.http
51 lines (36 loc) · 1.01 KB
/
local-test.http
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
### register
POST http://localhost:8080/api/apps
Content-Type: application/x-www-form-urlencoded
app=go-scratchpad&gitUrl=git@github.com:JackKCWong/go-scratchpad.git
### register
POST http://localhost:8080/api/apps
Content-Type: application/json
{
"app": "hello-world",
"gitUrl": "git@github.com:JackKCWong/go-runner-hello-world.git"
}
###
POST http://localhost:8080/api/apps
Content-Type: application/json
{
"app": "hello-world",
"gitUrl": "jack@github.com/go-runner-hello-world.git"
}
### get health
GET http://localhost:8080/api/health
### get hello
GET http://localhost:8080/nihao-shijie/nihao
### deploy
PUT http://localhost:8080/api/nihao-shijie
Content-Type: application/x-www-form-urlencoded
action=deploy
### restart
PUT http://localhost:8080/api/nihao-shijie
Content-Type: application/x-www-form-urlencoded
action=restart
### delete
DELETE http://localhost:8080/api/nihao-shijie
### delete
DELETE http://localhost:8080/api/hello-world
### delete
DELETE http://localhost:8080/api/go-runner-hello-world