-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.json
97 lines (97 loc) · 2.6 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "archivist",
"description": "Archivist is a cutting edge tool for documenting data collection in DDI.",
"keywords": [
"DDI",
"editor",
"questionnaire"
],
"website": "https://wiki.ucl.ac.uk/display/CLOS/Archivist",
"repository": "https://github.com/CLOSER-Cohorts/archivist",
"scripts": {
"postdeploy": "rails db:migrate"
},
"env": {
"FROM_ADDRESS": {
"description": "The email address used in the 'from' field for any outbound emails.",
"required": true
},
"REACT_APP_API_HOST": {
"description": "The URL to access the Rails API backend, this is the URL of the main heroku instance e.g. https://<INSERT HEROKU APP NAME>.herokuapp.com",
"required": true
},
"SIDEKIQ_USERNAME": {
"description": "The username for Sidekiq web interface authentication (/sidekiq_archivist where you can see background jobs).",
"required": false
},
"SIDEKIQ_PASSWORD": {
"description": "The password for Sidekiq web interface authentication.",
"required": false
},
"LANG": {
"description": "Language setting",
"value": "en_GB.UTF-8",
"required": true
},
"MAX_THREADS": {
"description": "The number of threads to run.",
"value": "5",
"required": true
},
"NODE_MODULES_CACHE": {
"description": "Node modules cache setting",
"value": "false",
"required": true
},
"RACK_ENV": {
"description": "Rack environment setting",
"value": "production",
"required": true
},
"RAILS_ENV": {
"description": "Rails environment setting",
"value": "production",
"required": true
},
"RAILS_SERVE_STATIC_FILES": {
"description": "Enable serving static files with Rails",
"value": "enabled",
"required": true
},
"JEMALLOC_ENABLED": {
"description": "Enable jemalloc, do not change this.",
"value": "true",
"required": true
},
"USE_YARN_CACHE": {
"description": "Yarn cache setting",
"value": "false",
"required": true
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "1",
"required": true
}
},
"addons": [
"mailgun:starter",
"heroku-redis:premium-1",
"heroku-postgresql:standard-0",
"scheduler:standard",
"librato:development",
"scheduler:standard",
"scout:chair"
],
"buildpacks": [
{
"url": "https://github.com/gaffneyc/heroku-buildpack-jemalloc.git"
},
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
]
}