-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
34 lines (34 loc) · 958 Bytes
/
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
{
"name": "Maslow Redux",
"description": "Document, discuss and track the performance of your users' needs",
"repository": "https://github.com/jordanhatch/maslow-redux",
"addons": [
{
"plan": "sendgrid:starter"
},
{
"plan": "heroku-postgresql"
}
],
"scripts": {
},
"env": {
"FORCE_SSL": {
"description": "When enabled, redirects HTTP connections to HTTPS",
"value": "1"
},
"INSTANCE_NAME": {
"description": "The name of your Maslow instance (eg. 'GOV.UK Maslow')",
"optional": true
},
"MASLOW_HOST": {
"description": "The URL to your Maslow instance, used to build links in emails (eg. 'https://example.org/')"
},
"EMAIL_FROM_ADDRESS": {
"description": "The email address that auto-generated emails (eg. password resets) will appear to be sent from (eg. '[email protected]')"
},
"SECRET_KEY_BASE": {
"generator": "secret"
}
}
}