-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
61 lines (61 loc) · 1.96 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
{
"name": "g-proxy",
"description": "Google authentication for internal services",
"keywords": [
"google",
"auth",
"proxy"
],
"website": "https://github.com/alvarcarto/alvarcarto-g-proxy",
"repository": "https://github.com/alvarcarto/alvarcarto-g-proxy",
"env": {
"ORIGIN_BASE_URL": {
"description": "The full base url of the origin. For example https://my-api.company.com",
"required": true
},
"ORIGIN_KEY": {
"description": "Create a 64-character alfa-numeric secure random key for this. It's a shared secret between this proxy and origin.",
"required": true
},
"GOOGLE_CLIENT_ID": {
"description": "Follow instructions in https://github.com/bitly/oauth2_proxy to create Google OAuth2 client id and secret",
"required": true
},
"GOOGLE_CLIENT_SECRET": {
"description": "Follow instructions in https://github.com/bitly/oauth2_proxy to create Google OAuth2 client id and secret",
"required": true
},
"CALLBACK_URL": {
"description": "Url where Google redirects users back to. If your service is hosted at internal.company.com. This should be https://internal.company.com/login/return",
"required": true
},
"SESSION_SECRET": {
"description": "Create a 64-character alfa-numeric secure random key for this",
"required": true
},
"ALLOWED_EMAIL_DOMAIN": {
"description": "",
"required": true
},
"MAX_BODY_SIZE": {
"description": "Max limit what this express app will accept as body.",
"value": "50mb"
},
"LOG_LEVEL": {
"description": "How verbose logging is wanted. Winston levels are used: debug, info, warn, error",
"value": "info"
},
"NODE_ENV": {
"description": "Use 'production' in production environments",
"value": "production"
}
},
"addons": [
"papertrail"
],
"buildpacks": [
{
"url": "http://github.com/heroku/heroku-buildpack-nodejs.git"
}
]
}