-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
31 lines (30 loc) · 851 Bytes
/
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
{
"name":"Iris",
"description":"Making quality metrics actionable",
"repository":"https://github.com/dabohealth/iris",
"scripts":{
"postdeploy":"bundle exec rake db:reset"
},
"env":{
"DABO_RAILS_SECRET_KEY_BASE":{
"description":"A secret key for verifying the integrity of signed cookies.",
"generator":"secret"
},
"WEB_CONCURRENCY":{
"description":"The number of processes to run.",
"value":"1"
},
"RACK_ENV":"production",
"MAILTRAP_DOMAIN": "mailtrap.io",
"MAILTRAP_PORT": "2525",
"MAILTRAP_USERNAME": "will be overwritten",
"MAILTRAP_PASSWORD": "will be overwritten",
"MAILTRAP_API_TOKEN": "will be overwritten",
"APP_NAME": "will be overwritten",
"REDIS_PROVIDER": "REDISCLOUD_URL"
},
"addons":[
"heroku-postgresql:hobby-dev",
"rediscloud"
]
}