-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
67 lines (67 loc) · 1.68 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
{
"name": "OpenRBF 2.0",
"description": "A rule engine on top of dhis2 developed by Bluesquare, to let power users describe their Results-Based Financing scheme.",
"logo": "https://bluesquarehub.files.wordpress.com/2017/01/logo-openrbf.png?w=151&h=147",
"keywords": ["ruby", "orbf", "openrbf"],
"scripts": {
"postdeploy": "bundle exec rake db:schema:load db:seed"
},
"env": {
"ADMIN_PASSWORD": {
"description": "Password to log in to Rails Admin",
"value": "admin-abc123"
},
"DEFAULT_USER_EMAIL": {
"description": "Email for the created user to log in with",
"value": "[email protected]"
},
"DEFAULT_USER_PASSWORD": {
"description": "Password for the created user to log in with",
"value": "abc123"
},
"SIDEKIQ_CONCURRENCY": {
"value": "2"
},
"LOG_LEVEL": {
"value": "INFO"
},
"MALLOC_ARENA_MAX": {
"description": "https://devcenter.heroku.com/articles/tuning-glibc-memory-behavior",
"value": "2"
},
"ORBF_STAGING": {
"description": "Designates it as a QA environment",
"value": "true"
},
"S3_SIMULATION_ACCESS": {
"required": true
},
"S3_SIMULATION_SECRET": {
"required": true
},
"S3_SIMULATION_REGION": {
"required": true,
"value": "eu-central-1"
},
"S3_SIMULATION_BUCKET": {
"required": true,
"value": "orbf-simulations-staging"
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
},
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": ["heroku-postgresql", "heroku-redis"],
"buildpacks": [
{
"url": "heroku/ruby"
}
]
}