-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.json
46 lines (46 loc) · 1.34 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
{
"name": "LocomotiveCMS on Heroku",
"description": "LocomotiveCMS is the most innovative Ruby on Rails site publishing platform. It is used by thousand of developers in the world.",
"logo": "https://avatars0.githubusercontent.com/u/340986",
"repository": "https://github.com/locomotivecms/engine",
"success_url": "/",
"keywords": ["locomotivecms", "rails", "ruby", "cms"],
"addons": [
"mongolab",
"sendgrid"
],
"env": {
"BUNDLE_WITHOUT": {
"description": "Don't change this value.",
"value": "development:test"
},
"HEROKU_APP_NAME": {
"description": "The name you filled in for App Name at the top of this form.",
"required": true
},
"HEROKU_API_KEY": {
"description": "The API key of your user.",
"required": true
},
"S3_KEY_ID": {
"description": "Set your AWS Access Key ID to enable S3 file storage.",
"required": true
},
"S3_SECRET_KEY": {
"description": "AWS Access Secret Key.",
"required": true
},
"S3_BUCKET": {
"description": "Name of your S3 bucket on AWS.",
"required": true
},
"S3_BUCKET_REGION": {
"description": "Region of your S3 bucket on AWS.",
"required": true
},
"S3_ASSET_HOST_URL": {
"description": "Optional custom CDN asset host url.",
"required": false
}
}
}