-
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.29 KB
/
_app.json
File metadata and controls
45 lines (45 loc) · 1.29 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": "Full Stack Starter",
"description": "This starter codebase includes a React SPA client and a Node/Express RESTful API endpoint that uses a Postgres SQL database.",
"website": "https://devmission.org/",
"repository": "https://github.com/dev-mission/full-stack-starter/",
"logo": "https://devmission.org/wp-content/uploads/2017/04/cropped-Dev-Mission-Icon-JPG-270x270.jpg",
"scripts": {
"postdeploy": "sequelize db:migrate"
},
"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": "My Name"
},
"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"
}
]
}