-
Notifications
You must be signed in to change notification settings - Fork 149
/
app.json
60 lines (52 loc) · 2 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
55
56
57
58
59
60
{
"name": "Shareabouts Map Client",
"description": "A standalone Shareabouts map client. For configuration docs, see https://github.com/openplans/shareabouts#documentation",
"repository": "https://github.com/openplans/shareabouts",
"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/nodejs"},
{"url": "heroku/python"}
],
"env": {
"SHAREABOUTS_DATASET_ROOT": {
"description": "The root API URL for the map dataset.",
"value": "/full-api/demo-user/datasets/demo-data"
},
"SHAREABOUTS_DATASET_USERNAME": {
"description": "The username of the dataset owner.",
"value": "demo-user"
},
"SHAREABOUTS_DATASET_SLUG": {
"description": "The slug for the dataset.",
"value": "demo-data"
},
"SHAREABOUTS_DATASET_KEY": {
"description": "The API key for the dataset.",
"value": "NTNhODE3Y2IzODlmZGZjMWU4NmU3NDhj"
},
"SHAREABOUTS_FLAVOR": {
"description": "The map flavor.",
"value": "defaultflavor"
},
"USE_GEODB": {"required": false, "value": "False", "description": ""},
"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": ""},
"DEBUG": "True",
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
}
}