-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathtestconfig.json
More file actions
38 lines (38 loc) · 1.47 KB
/
testconfig.json
File metadata and controls
38 lines (38 loc) · 1.47 KB
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
{
"commands": {
"auth": {
"register":"register http://{{.HostName}} --username={{.UserName}} --password={{.Password}} --email={{.Email}}",
"login": "auth:login http://{{.HostName}} --username={{.UserName}} --password={{.Password}}",
"logout": "auth:logout",
"cancel":"auth:cancel"
},
"keys": {
"add": "keys:add {{.AuthKey}}.pub || true",
"list": "keys:list",
"remove": "keys:remove {{.AuthKey}} ||true"
},
"clusters": {
"create": "clusters:create {{.ClusterName}} http://{{.HostName}} --hosts={{.Hosts}} --auth={{.AuthKey}} || true",
"list": "clusters:list",
"update": "clusters:update {{.ClusterName}} --domain=http://{{.HostName}} --hosts={{.UpdatedHosts}} --auth={{.AuthKey}} ||true",
"info": "clusters:info {{.ClusterName}}",
"destroy" : "clusters:destroy {{.ClusterName}} --confirm={{.ClusterName}}"
},
"git" : {
"clone" : "git clone https://github.com/deis/{{.ExampleApp}}.git",
"remove" : "git remote remove deis",
"push" : "git push deis master"
}
},
"apps": {
"go": ["example-go","helloworld"],
"ruby" : ["example-ruby-sinatra"],
"dart" : ["example-dart"],
"java" : ["example-java-jetty","example-play"],
"Javascript" : ["example-nodejs-express"],
"python" : ["example-python-django","example-python-flask","example-dockerfile-python"],
"scala" : ["example-scala"],
"php": ["example-php"],
"clojure":["example-clojure-ring"]
}
}