forked from cobyism/ghost-on-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
32 lines (32 loc) · 996 Bytes
/
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
{
"name": "Ghost on Heroku",
"description": "Deploy a Ghost blog onto Heroku",
"logo": "https://user-images.githubusercontent.com/459713/52089786-71afd800-257d-11e9-92d1-462dc6e9190b.png",
"repository": "https://github.com/darcyclarke/ghost-on-heroku",
"scripts": {
"postdeploy": "bin/init-deployment"
},
"success_url": "/ghost",
"addons": [
"jawsdb",
"mailgun"
],
"env": {
"AWS_ACCESS_KEY_ID": {
"description": "Set your AWS Access Key ID to enable S3 file storage. Leave blank to disable file uploads.",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS Access Secret Key, if using S3 file storage.",
"required": false
},
"AWS_DEFAULT_REGION": {
"description": "Region of your S3 bucket on AWS, if using S3 file storage.",
"required": false
},
"AWS_S3_BUCKET": {
"description": "Name of your S3 bucket on AWS, if using S3 file storage.",
"required": false
}
}
}