-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_app.json
More file actions
45 lines (45 loc) · 1.24 KB
/
_app.json
File metadata and controls
45 lines (45 loc) · 1.24 KB
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
{
"name": "Fellowship",
"description": "This is a custom CMS for the Dev/Mission Fellowship.",
"website": "https://devmission.org/",
"repository": "https://github.com/dev-mission/fellowship/",
"logo": "https://devmission.org/wp-content/uploads/2017/04/cropped-Dev-Mission-Icon-JPG-270x270.jpg",
"scripts": {
"postdeploy": "sequelize db:migrate; sequelize db:seed:all"
},
"env": {
"REACT_APP_FEATURE_REGISTRATION": {
"description": "To enable user registration, enter the value: true",
"value": "false"
},
"REACT_APP_SITE_TITLE": {
"description": "The title of the website that will appear in the browser tab",
"value": "Dev/Mission Fellowship"
},
"SESSION_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"SMTP_ENABLED": {
"description": "To enable sending email (fully configured mail add-on required), enter the value: true",
"value": "false"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "12"
}
},
{
"plan": "mailgun:starter"
}
]
}