-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
72 lines (72 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "decidim_impd",
"description": "decidim_impd - Direct and participatory democracy web platform based on Decidim framework",
"keywords": [],
"addons": [
"heroku-postgresql:standard-0",
"heroku-redis:hobby-dev",
"logentries:le_tryit",
"memcachedcloud:30",
"newrelic:wayne"
],
"scripts": {
"postdeploy":"SEED=true rake db:seed"
},
"stack": "heroku-20",
"buildpacks": [
{
"url": "https://github.com/gaffneyc/heroku-buildpack-jemalloc"
},
{
"url": "heroku/ruby"
}
],
"env": {
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"AWS_BUCKET_NAME": {
"required": true
},
"AWS_REGION": {
"required": true
},
"EMAIL": {
"description": "The email from where the transactions emails will be set as send.",
"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
},
"MAPS_API_KEY": {
"required": false
},
"HEROKU_APP_NAME": {
"description": "Needed for review apps and seed data",
"required": false
},
"SECRET_KEY_BASE": {
"description": "A secret used by Rails to identify sessions",
"generator": "secret"
},
"JEMALLOC_ENABLED": {
"value": "true"
},
"SENTRY_DSN": {
"description": "The URL for Sentry to report error",
"required": false
}
}
}