-
Notifications
You must be signed in to change notification settings - Fork 90
/
app.json
79 lines (76 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "Doorman",
"description": "An osquery fleet manager",
"repository": "https://github.com/mwielgoszewski/doorman.git",
"keywords": ["doorman", "fleet", "osquery"],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
],
"addons": [
"heroku-postgresql",
"heroku-redis"
],
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"scripts": {
"postdeploy": "python manage.py db upgrade"
},
"success_url": "/manage",
"env": {
"SECRET_KEY": {
"description": "Flask's secret key",
"generator": "secret"
},
"ENROLL_SECRET": {
"description": "Either one value or several space-delimited values",
"value": ""
},
"OAUTH_CLIENT_ID": {
"description": "Google's client ID to use for user authentication, if not provided then auth will be disabled",
"required": false
},
"OAUTH_CLIENT_SECRET": {
"description": "Google's client ID to use for user authentication",
"required": false
},
"OAUTH_ALLOWED_USERS": {
"description": "Space-delimited list of allowed Google user IDs (or emails?)",
"required": false
},
"MAIL_SERVER": {
"description": "SMTP server to send emails with (mailing will be disabled unless this is provided)",
"required": false
},
"MAIL_PORT": {
"description": "SSL-enabled port on the mail server",
"required": false
},
"MAIL_USERNAME": {
"description": "Username for SMTP",
"required": false
},
"MAIL_PASSWORD": {
"description": "Password for SMTP",
"required": false
},
"MAIL_DEFAULT_SENDER": {
"description": "Default sender for emails",
"required": false
},
"MAIL_RECIPIENTS": {
"description": "List of mail recipients, separated by ';'",
"required": false
}
}
}