-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.29 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
{
"name": "SignMe",
"description": "SignMe is a digital sign-in sheet web app.",
"website": "https://devmission.org/",
"repository": "https://github.com/dev-mission/fellowship2022-signup/",
"logo": "https://devmission.org/wp-content/uploads/2017/04/cropped-Dev-Mission-Icon-JPG-270x270.jpg",
"scripts": {
"postdeploy": "cd server; node_modules/.bin/sequelize db:migrate; if [ -d seeders ]; then node_modules/.bin/sequelize db:seed:all; fi"
},
"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": "SignMe"
},
"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": "eco"
}
},
"addons": [
{
"plan": "heroku-postgresql:mini",
"options": {
"version": "14"
}
},
{
"plan": "mailgun:starter"
}
]
}