forked from streetmix/streetmix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
35 lines (35 loc) · 718 Bytes
/
app.json
File metadata and controls
35 lines (35 loc) · 718 Bytes
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
{
"name": "Streetmix",
"scripts": {},
"repository": "https://github.com/streetmix/streetmix/",
"website": "https://streetmix.net/",
"env": {
"COOKIE_SESSION_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"AUTH0_CLIENT_ID": {
"required": true
},
"AUTH0_CLIENT_SECRET": {
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE"
},
{
"plan": "heroku-redis:hobby-dev",
"as": "REDIS"
},
"papertrail:choklad",
"newrelic:wayne"
],
"buildpacks": [
{
"url": "urn:buildpack:heroku/nodejs"
}
]
}