-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 1.18 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
{
"name": "Ghost on Heroku",
"description": "Just a blogging platform",
"logo": "https://raw.githubusercontent.com/TryGhost/Ghost/master/core/client/public/assets/img/large.png",
"repository": "https://github.com/cobyism/ghost-on-heroku",
"success_url": "/ghost",
"addons": [
"heroku-postgresql",
"mailgun"
],
"env": {
"HEROKU_URL": {
"description": "The URL of this Heroku app.",
"value": "https://YOURAPPNAME.herokuapp.com"
},
"S3_ACCESS_KEY_ID": {
"description": "Set your AWS Access Key ID to enable S3 file storage. Leave blank to disable file uploads.",
"required": false
},
"S3_ACCESS_SECRET_KEY": {
"description": "AWS Access Secret Key, if using S3 file storage.",
"required": false
},
"S3_BUCKET_NAME": {
"description": "Name of your S3 bucket on AWS, if using S3 file storage.",
"required": false
},
"S3_BUCKET_REGION": {
"description": "Region of your S3 bucket on AWS, if using S3 file storage.",
"required": false
},
"S3_ASSET_HOST_URL": {
"description": "Optional custom CDN asset host url, if using S3 file storage.",
"required": false
}
}
}