-
-
Notifications
You must be signed in to change notification settings - Fork 263
/
app.json
61 lines (61 loc) · 2.51 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
{
"name": "Untitled Application",
"description": "The Ruby on Rails SaaS-in-a-Box",
"repository": "https://github.com/bullet-train-co/bullet_train",
"logo": "https://bullettrain.co/heroku-logo.png",
"keywords": ["ruby", "rails"],
"buildpacks": [
{ "url": "heroku/nodejs" },
{ "url": "https://github.com/gaffneyc/heroku-buildpack-jemalloc.git" },
{ "url": "heroku/ruby" }
],
"formation": {
"web": {
"quantity": 1,
"size": "basic"
},
"worker": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
"heroku-postgresql:essential-0",
"heroku-redis:mini",
"memcachier:dev",
"cloudinary:starter",
"scheduler:standard",
"rails-autoscale:white",
"honeybadger:basic"
],
"env": {
"BASE_URL": {
"description": "Supply the fully-qualified URL for this Heroku app, e.g. `https://your-app.herokuapp.com`. You'll update this later after configuring a custom domain.",
"value": "https://ENTER_YOUR_APP_NAME_HERE.herokuapp.com"
},
"FONTAWESOME_NPM_AUTH_TOKEN": {
"description": "We recommend using Font Awesome Pro for icons. To use it, fetch your token from `https://fontawesome.com/how-to-use/on-the-web/setup/using-package-managers` and enter it here.",
"required": false
},
"POSTMARK_API_TOKEN": {
"description": "We recommend using Postmark for email delivery. To use it, add and configure a new server at `https://account.postmarkapp.com/servers`, fetch the API token from the \"API Tokens\" tab, and enter it here.",
"required": false
},
"HIDE_THINGS": {
"description": "This ensures the Super Scaffolding templates don't show up in production.",
"value": "true"
},
"RAILS_MAX_THREADS": {
"description": "The maximum number of threads that puma will fork. https://devcenter.heroku.com/articles/deploying-rails-applications-with-the-puma-web-server#recommended-default-puma-process-and-thread-configuration",
"value": "5"
},
"WEB_CONCURRENCY": {
"description": "The number of workers per puma thread. We set it low to prevent OOM errors on new heroku apps. If you move to larger dynos you can increase this. https://devcenter.heroku.com/articles/deploying-rails-applications-with-the-puma-web-server#recommended-default-puma-process-and-thread-configuration",
"value": "2"
},
"JEMALLOC_ENABLED": {
"description": "Activate the jemalloc buildpack. https://elements.heroku.com/buildpacks/gaffneyc/heroku-buildpack-jemalloc",
"value": "true"
}
}
}