generated from csc301-2023-winter/deliverable-documents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
54 lines (54 loc) · 1.03 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
46
47
48
49
50
51
52
53
54
{
"addons": ["heroku-postgresql:mini"],
"buildpacks": [
{
"url": "https://github.com/TheSecurityDev/heroku-buildpack-nodejs-pnpm"
}
],
"env": {
"HOST": {
"value": "0.0.0.0"
},
"NODE_ENV": {
"value": "production"
},
"NPM_CONFIG_PRODUCTION": {
"value": "false"
},
"DATABASE_URL": {
"required": false,
"description": "Database URL that will be automatically be set by Heroku Postgres Add-On"
},
"SF_BASE_URL": {
"required": true
},
"SF_CLIENT_ID": {
"required": true
},
"SF_CLIENT_SECRET": {
"required": true
},
"SF_USERNAME": {
"required": true
},
"SF_PASSWORD": {
"required": true
}
},
"environments": {
"review": {
"addons": ["heroku-postgresql:hobby-dev"],
"buildpacks": [
{
"url": "https://github.com/TheSecurityDev/heroku-buildpack-nodejs-pnpm"
}
]
}
},
"formation": {
"web": {
"quantity": 1,
"size": "eco"
}
}
}