-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
53 lines (48 loc) · 1.89 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
{
"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:standard-0",
"rediscloud"
],
"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"
},
"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": ""},
"BUILDPACK_URL": "https://github.com/ddollar/heroku-buildpack-multi.git",
"DEBUG": "True",
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
}
}