-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.25 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": "StreetPix",
"description": "This is a website designed to support a private photography group.",
"website": "https://sf.streetpix.net/",
"repository": "https://github.com/francisli/streetpix-server",
"logo": "https://sf.streetpix.net/logo512.png",
"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": "StreetPix"
},
"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"
}
]
}