-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
28 lines (28 loc) · 740 Bytes
/
app.json
File metadata and controls
28 lines (28 loc) · 740 Bytes
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
{
"name": "wptester",
"description": "Run WPT tests and log the results in Librato",
"repository": "https://github.com/gesteves/wptester",
"addons": [
"scheduler:standard"
],
"success_url": "https://github.com/gesteves/wptester#usage",
"env": {
"WPT_API_KEY": {
"description": "WebPageTest API key.",
"required": true
},
"LIBRATO_USER": {
"description": "Your Librato account's email address.",
"required": true
},
"LIBRATO_TOKEN": {
"description": "Your Librato record-only API token.",
"required": true
},
"TOKEN": {
"description": "A random string to make your URLs harder to guess.",
"required": true,
"generator": "secret"
}
}
}