-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
47 lines (47 loc) · 1.2 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
{
"name": "Renalware",
"description": "Renalware uses demographic, clinical, pathology, and nephrology datasets to improve patient care, undertake clinical and administrative audits and share data with external systems.",
"website": "http://www.airslie.com/renalware.html",
"success_url": "/",
"stack": "heroku-24",
"addons": [
{
"plan": "heroku-postgresql:essential-1",
"options": {
"version": "15"
}
}
],
"env": {
"DEMO": "1",
"UKRDC_WORKING_PATH": "tmp/ukrdc",
"RACK_ENV": "production",
"RAILS_ENV": "production",
"DEFAULT_FROM_EMAIL_ADDRESS": "[email protected]",
"PHONE_NUMBER_ON_LETTERS": "020 000 0000",
"RENAL_UNIT_ON_LETTERS": "Test Renal Unit",
"FALLBACK_EMAIL_ADDRESS_FOR_TEST_MESSAGES": "[email protected]",
"HEROKU": true,
"COOKIE_SECRET": {
"generator": "secret"
},
"SETUP_BY": {
"description": "Who initiated this setup",
"value": "Airslie"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/airslie/heroku-buildpack-version"
},
{
"url": "heroku/ruby"
}
],
"scripts": {
"postdeploy": "bundle exec rake db:seed"
}
}