-
Notifications
You must be signed in to change notification settings - Fork 616
/
app.json
54 lines (54 loc) · 1.78 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
{
"name": "DemocracyOS",
"description": "An online space for voting on political proposals. The software aims to stimulate better arguments and come to better rulings",
"keywords": [
"democracy",
"democracyos",
"liquid democracy",
"partido de la red",
"democracia en red",
"net democracy",
"net party",
"online democracy",
"web democracy",
"change the tool"
],
"author": "Democracia en Red <[email protected]>",
"website": "https://democracyos.org/",
"repository": "https://github.com/DemocracyOS/app",
"logo": "https://cldup.com/guAAqPM85t.png",
"addons": [
"mongolab:sandbox",
"sendgrid:starter"
],
"env": {
"JWT_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies",
"generator": "secret"
},
"STAFF": {
"description": "Email of the Administrator of the App, this user will be able to do the first setup."
},
"ORGANIZATION_NAME": {
"description": "Title of the app to be shown on the right side of the header"
},
"ORGANIZATION_URL": {
"description": "Link to take the user when clicks on organizationName"
},
"HOST": {
"description": "Public accessible URL to your app. For example: 'heroku-app-name.herokuapp.com'."
},
"PROTOCOL": {
"value": "https",
"description": "Set protocol to https:. Heroku supports this by default. Normally you shouldn't change it."
},
"HTTPS_REDIRECT": {
"value": "reverse-proxy",
"description": "This option forces the redirection from http: to https:. Normally you shouldn't change it."
},
"DEBUG": {
"value": "democracyos*",
"description": "Recommended default value for server logging, to see it run `heroku logs --tail` on your terminal."
}
}
}