forked from streetmix/streetmix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
39 lines (39 loc) · 952 Bytes
/
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
{
"name": "Streetmix",
"scripts": {},
"repository": "https://github.com/streetmix/streetmix/",
"website": "https://streetmix.net/",
"stack": "heroku-20",
"env": {
"COOKIE_SESSION_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"AUTH0_DOMAIN": {
"required": true
},
"AUTH0_CLIENT_ID": {
"required": true
},
"AUTH0_CLIENT_SECRET": {
"required": true
},
"CYPRESS_INSTALL_BINARY": {
"description": "Skip installing Cypress in deployment environments. See https://docs.cypress.io/guides/getting-started/installing-cypress.html#Skipping-installation",
"value": "0"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE"
},
"papertrail:choklad",
"newrelic:wayne"
],
"buildpacks": [
{
"url": "urn:buildpack:heroku/nodejs"
}
]
}