-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp.json
59 lines (59 loc) · 1.58 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
{
"name": "Consul",
"description": "Consul - Open Government and E-Participation Web Software",
"repository": "https://github.com/consul/consul",
"scripts": {
"postdeploy": "bundle exec rake db:setup"
},
"env": {
"RACK_ENV": {
"description": "The rack environment to set up this deployment with.",
"required": true,
"value": "production"
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"SEED": {
"description": "Yes if wanting to seed test data",
"value": "yes"
},
"WEB_CONCURRENCY": {
"description": "The amount of workers (forks) a web dyno will spawn.",
"required": false,
"value": "1"
},
"MAX_THREADS": {
"description": "The maximum amount of threads worker will spawn.",
"required": false,
"value": "3"
},
"FORCE_SSL": {
"description": "Force SSL?",
"required": false,
"value": "true"
},
"DISABLE_ROBOTS": {
"description": "Disable robots",
"required": false,
"value": "true"
}
},
"addons": [
"heroku-postgresql",
"heroku-redis",
"rollbar:free",
"sendgrid:starter",
"memcachedcloud"
],
"formation": [
{ "process": "web", "quantity": 1},
{ "process": "worker", "quantity": 1}
],
"buildpacks": [
{ "url": "https://github.com/heroku/heroku-buildpack-nodejs" },
{ "url": "https://github.com/jerrysu/heroku-buildpack-webpack" },
{ "url": "https://github.com/heroku/heroku-buildpack-ruby" }
]
}