-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
49 lines (49 loc) · 1.23 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
{
"name": "osp-app",
"description": "Decidim / osp-app - Direct and participatory democracy web platform based on Decidim framework",
"keywords": [],
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev",
"memcachedcloud:30",
"sendgrid:starter",
"sentry:f1"
],
"scripts": {
"postdeploy":"rake db:schema:load db:migrate"
},
"env": {
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"CENSUS_PASSWORD": {
"description": "Password for a custom CensusAuthenticationHandler, if needed",
"required": false
},
"CENSUS_URL": {
"description": "URL for a custom CensusAuthenticationHandler, if needed",
"required": false
},
"CENSUS_USERNAME": {
"description": "Username for a custom CensusAuthenticationHandler, if needed",
"required": false
},
"HERE_APP_ID": {
"required": false
},
"HERE_APP_CODE": {
"required": false
},
"HEROKU_APP_NAME": {
"description": "Needed for review apps",
"required": false
},
"SECRET_KEY_BASE": {
"description": "A secret used by Rails to identify sessions",
"generator": "secret"
}
}
}