-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.json
52 lines (52 loc) · 1.02 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
{
"name": "metadecidim",
"description": "Decidim community",
"keywords": [],
"stack": "heroku-20",
"buildpacks": [
{
"url": "https://github.com/gaffneyc/heroku-buildpack-jemalloc"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev",
"sendgrid:starter"
],
"scripts": {
"postdeploy": "DISABLE_DATABASE_ENVIRONMENT_CHECK=1 rake db:schema:load db:migrate db:seed"
},
"env": {
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"CENSUS_PASSWORD": {
"required": true
},
"CENSUS_URL": {
"required": true
},
"CENSUS_USERNAME": {
"required": true
},
"HERE_API_KEY": {
"required": false
},
"HEROKU_APP_NAME": {
"required": true
},
"SECRET_KEY_BASE": {
"description": "A secret used by Rails to identify sessions",
"generator": "secret"
}
}
}