-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.json
82 lines (82 loc) · 1.69 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
80
81
82
{
"name": "nomad",
"env": {
"BRANDING_CSS_URL": {
"required": false
},
"BRANDING_EMAIL_SIGNATURE": {
"required": false
},
"BRANDING_HEADLINE_1": {
"required": false
},
"BRANDING_HEADLINE_2": {
"required": false
},
"BRANDING_ORG_NAME": {
"required": false
},
"BRANDING_ORG_SITE_NAME": {
"required": false
},
"BRANDING_SUPPORT_EMAIL": {
"required": false
},
"BUILD_WITH_GEO_LIBRARIES": "1",
"CACHE_TYPE": "redis",
"CARPOOL_ENV": "staging",
"FACEBOOK_CLIENT_ID": {
"required": true
},
"FACEBOOK_CLIENT_SECRET": {
"required": true
},
"FLASK_APP": "wsgi.py",
"GOOGLE_ANALYTICS_ID": {
"required": false
},
"GOOGLE_CLIENT_ID": {
"required": true
},
"GOOGLE_CLIENT_SECRET": {
"required": true
},
"GOOGLE_MAPS_API_KEY": {
"required": true
},
"INTERCOM_KEY": {
"required": false
},
"MAIL_DEFAULT_SENDER": "[email protected]",
"MAIL_LOG_ONLY": "false",
"MAIL_PASSWORD": {
"required": true
},
"MAIL_PORT": "587",
"MAIL_SERVER": "email-smtp.us-east-1.amazonaws.com",
"MAIL_USERNAME": {
"required": true
},
"MAIL_USE_SSL": "false",
"MAIL_USE_TLS": "true",
"RQ_ENABLED": "true",
"SECRET_KEY": {
"generator": "secret"
},
"SENTRY_DSN": {
"required": false
},
"SERVER_NAME": {
"required": true
}
},
"addons": ["heroku-postgresql", "heroku-redis"],
"buildpacks": [
{
"url": "https://github.com/beanieboi/nginx-buildpack.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
}
]
}