-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
42 lines (42 loc) · 1.25 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
{
"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 <speak@democracyos.org>",
"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": "Comma separated emails listed here will have access to /admin"
},
"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: foo-democracyos.herokuapp.com"
}
}
}