-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathapp.json
45 lines (45 loc) · 1.38 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": "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": "cd server; node_modules/.bin/sequelize db:migrate; if [ -d seeders ]; then node_modules/.bin/sequelize db:seed:all; fi"
},
"env": {
"VITE_FEATURE_REGISTRATION": {
"description": "To enable user registration, enter the value: true",
"value": "false"
},
"VITE_SITE_TITLE": {
"description": "The title of the website that will appear in the browser tab",
"value": "Full Stack Starter"
},
"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": "15"
}
},
{
"plan": "mailgun:starter"
}
]
}