forked from TheCommonsLibrary/Neighbourly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
41 lines (41 loc) · 1.44 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
{
"name": "Neighbourly",
"description": "A turf-cutting tool for door-knocking campaigns",
"repository": "https://github.com/TheCommonsLibrary/Neighbourly",
"stack": "heroku-16",
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"env": {
"APP_NAME": {
"description": "",
"value": "Neighbourly",
"required": true
},
"APP_DESCRIPTION": {
"description": "The excerpt used in search listings and share previews",
"value": "A turf-cutting tool for door-knocking campaigns",
"required": true
},
"PRIMARY_DOMAINS": {
"description": "An optional comma-separated list of domains. Users with email addresses at these domains will be able to manage areas selected for centrally-organised doorknocking events",
"value": "",
"required": false
},
"CENTRALLY_COORDINATED_EVENTS_URL": {
"description": "The link that will appear in the popup for all areas of the map claimed by centrally-organised events",
"value": "",
"required": false
},
"LAMBDA_BASE_URL": {
"description": "The base URL for the API Gateway endpoints that power the backend infrastructure",
"value": "https://4oqtu02x7f.execute-api.ap-southeast-2.amazonaws.com/prod",
"required": true
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret",
"required": true
}
}
}