-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
38 lines (38 loc) · 1022 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
35
36
37
38
{
"name": "Weekly Roundup",
"description": "Weekly Roundup is a news clipping and emailing tool built for the Case Foundation's internal communications team.",
"repository": "https://github.com/casefoundation/weekly-roundup",
"image": "heroku/nodejs",
"addons": [
{
"plan": "heroku-postgresql"
}
],
"env": {
"DB_CLIENT": {
"value": "pg"
},
"JWT_SECRET": {
"generator": "secret"
},
"NODE_ENV": {
"value": "production"
},
"SENDGRID_API_KEY": {
"value": "",
"description": "API key for SendGrid service."
},
"ADMIN_EMAIL": {
"value": "",
"description": "Your email address. (Used as the starter-user for the system.)"
},
"ADMIN_PASSWORD": {
"value": "",
"description": "A new password to use to log into the site. (At least 6 characters long.)"
},
"LOGO_URL": {
"value": "",
"description": "Absolute URL of a transparent or white-background logo for email headers."
}
}
}