-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
46 lines (46 loc) · 1.52 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
{
"name": "Our Wedding Heroes",
"description": "Wedding website with a honeymoon gift list",
"repository": "https://github.com/InsidersByte/our-wedding-heroes",
"website": "https://www.ourweddingheroes.com/",
"success_url": "/admin",
"addons": [
"heroku-postgresql"
],
"env": {
"SECRET": {
"description": "A secret key for verifying the integrity of JWT.",
"generator": "secret"
},
"EMAIL_FROM": {
"description": "The from address that emails come from."
},
"EMAIL_SIGNATURE": {
"description": "The email signature you want to use.",
"value": "Our Wedding Heroes"
},
"EMAIL_SERVICE": {
"description": "The email service to use.",
"value": "Mailgun"
},
"EMAIL_USERNAME": {
"description": "The username for the email service."
},
"EMAIL_PASSWORD": {
"description": "The password for the email service."
},
"PAYPAL_ME_USERNAME": {
"description": "Your paypal.me username.",
"required": false
},
"PGSSLMODE": {
"description": "PostgreSQL SSL connection mode. Set to 'require' to force SSL. Unset it to use the default.",
"required": false,
"value": "require"
},
"NPM_CONFIG_PRODUCTION": {
"description": "Don't change, it's required at the moment to deploy.",
"value": "false"
}
}
}