-
Notifications
You must be signed in to change notification settings - Fork 44
/
app.json
46 lines (46 loc) · 1.29 KB
/
app.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
{
"name": "Pingpong API Monitoring",
"description": "Get detailed information about your api end points and monitor their performance.",
"repository": "https://github.com/keen/pingpong/tree/ui-revamp",
"keywords": ["api", "monitoring", "keen io"],
"website": "https://github.com/keen/pingpong",
"addons": [
"heroku-postgresql",
"keen",
"sendgrid"
],
"env": {
"APP_NAME": {
"description": "The url name of your app. Needed to do the keepalive ping.",
"value": ""
},
"TO_EMAIL_ADDRESS": {
"description": "The email address to send alerts to.",
"value": ""
},
"FROM_EMAIL_ADDRESS": {
"description": "The from email address for alert emails.",
"value": ""
},
"SLACK_WEBHOOK_URL": {
"description": "Optional: Webhook URL for Slack notifications",
"required": false
},
"KEEN_COLLECTION": {
"description": "Name of the collection to store the checks in.",
"value": "checks",
"required": false
},
"HTTP_USERNAME": {
"description": "Optional: User name to access the site.",
"required": false
},
"HTTP_PASSWORD": {
"description": "Optional: Password to access the site.",
"required": false
}
},
"scripts": {
"postdeploy": "rake db:migrate"
}
}