-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
57 lines (57 loc) · 1.84 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "Heroku Cabot",
"description": "Run Cabot on Heroku in a single dyno",
"repository": "https://github.com/jorgenevens/heroku-cabot",
"logo": "https://raw.githubusercontent.com/arachnys/cabot/master/cabot/static/arachnys/img/icon_96x96.png",
"keywords": ["cabot", "cabotapp", "monitoring", "uptime"],
"website": "https://cabotapp.com",
"success_url": "/",
"stack": "container",
"addons": ["heroku-postgresql:hobby-dev", "heroku-redis:hobby-dev"],
"env": {
"DATA_RETENTION_DAYS": {
"description": "The number of days to preserve data in the database",
"value": "1"
},
"DJANGO_SECRET_KEY": {
"description": "Django secret key",
"generator": "secret"
},
"ADMIN_EMAIL": {
"description": "Administrator e-mail",
"required": true
},
"CABOT_FROM_EMAIL": {
"description": "E-mail address of Cabot",
"required": true
},
"EMAIL_HOST": {
"description": "E-mail host to use",
"required": false
},
"EMAIL_PORT": {
"description": "E-mail host SMTP port",
"required": false,
"value": "25"
},
"EMAIL_USE_TLS": {
"description": "E-mail SMTP host should use TLS",
"required": false,
"value": "1"
},
"TIME_ZONE": {
"description": "Timezone to run Cabot in",
"required": false,
"value": "GMT"
},
"WWW_HTTP_HOST": {
"description": "Domain name on which Cabot will run",
"required": true
},
"WWW_SCHEME": {
"description": "Scheme to use for requests (https or http)",
"required": true,
"value": "https"
}
}
}