-
Notifications
You must be signed in to change notification settings - Fork 30
/
app.json
36 lines (31 loc) · 1.24 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
{
"name": "Shareabouts Data Server",
"description": "A standalone Shareabouts data API server.",
"repository": "https://github.com/openplans/shareabouts-api",
"logo": "https://pbs.twimg.com/profile_images/476001405501587456/rnCUrPIX_400x400.png",
"scripts": {
"postdeploy": "scripts/postdeploy"
},
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev"
],
"buildpacks": [
{"url": "heroku/python"}
],
"env": {
"SHAREABOUTS_AWS_BUCKET": {"required": false, "description": "Where should uploaded attachments go?"},
"SHAREABOUTS_AWS_KEY": {"required": false, "description": ""},
"SHAREABOUTS_AWS_SECRET": {"required": false, "description": ""},
"SHAREABOUTS_FACEBOOK_KEY": {"required": false, "description": ""},
"SHAREABOUTS_FACEBOOK_SECRET": {"required": false, "description": ""},
"SHAREABOUTS_TWITTER_KEY": {"required": false, "description": ""},
"SHAREABOUTS_TWITTER_SECRET": {"required": false, "description": ""},
"USE_GEODB": {"required": false, "description": ""},
"WORKERS": "4",
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
}
}