-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
80 lines (80 loc) · 2.4 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
{
"name": "caucus",
"description": "",
"scripts": {
"postdeploy": "bin/setup"
},
"addons": [
"heroku-redis"
],
"env": {
"HEROKU_APP_NAME": {
"description": "Heroku auto-injects this app's hostname into the env when using review apps. We use it to determine if we're in a review app. https://devcenter.heroku.com/articles/github-integration-review-apps#injected-environment-variables",
"required": false
},
"LANG": {
"description": "Document language and encoding supplied with HTTP responses",
"value": "en_US.UTF-8",
"required": true
},
"RACK_ENV": {
"description": "Rack environment; defaults to same as RAILS_ENV",
"required": true
},
"RAILS_LOG_TO_STDOUT": {
"description": "Configures Rails to log to stdout, which we pick up with log monitoring add-ons",
"value": "true",
"required": true
},
"RAILS_SERVE_STATIC_FILES": {
"description": "Configures Rails to generate and serve static files directly without using an external asset server",
"value": "true",
"required": true
},
"SECRET_KEY_BASE": {
"description": "Secret salt used for generating random things such as UUIDs; required, but generated and rotated by hand to control session kills",
"required": true
},
"MALLOC_ARENA_MAX": {
"description": "Recommended to be set to '2' to manage Sidekiq's memory usage.",
"required": false
},
"FACT_STREAM_BASE_URI": {
"description": "URL for FactStream instance to import claims from.",
"value": "https://www.example.com",
"required": true
},
"MAILGUN_API_KEY": {
"description": "A Mailgun API key for user email management.",
"value": "XXXXXXX",
"required": true
},
"AWS_ACCESS_KEY_ID": {
"description": "An AWS Access Key Id for an IAM user",
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"description": "An AWS Secret Access Key for an IAM user",
"required": true
},
"AWS_REGION": {
"description": "An AWS region",
"default": "us-east-1",
"required": true
},
"SENTRY_DSN": {
"description": "Sentry.io DSN, if set Sentry.io reporting is used, if it's not set Sentry.io is ignored.",
"required": false
}
},
"formation": {
"web": {
"quantity": 1
}
},
"buildpacks": [
{
"url": "heroku/ruby"
}
]
}