-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
38 lines (37 loc) · 1.1 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
{
"name": "s3preview",
"description": "Preview serving microservice for s3. Creates and uploads thumbnails as needed.",
"repository": "https://github.com/andrioid/s3preview",
"logo": "https://node-js-sample.herokuapp.com/node.svg",
"keywords": ["go", "golang", "s3", "thumbnails", "microservice"],
"env": {
"BUILDPACK_URL": {
"decription": "Buildpack",
"value": "https://github.com/kr/heroku-buildpack-go"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS Access Key ID. Needs to be able to READ, WRITE and LIST buckets.",
"value": ""
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS Secret Key",
"value": ""
},
"PREVIEW_BUCKET": {
"description": "Bucket to store previews.",
"value": ""
},
"PREVIEW_PREFIX": {
"description": "Optional prefix for preview bucket.",
"value": "s3preview/",
"required": false
},
"ASSET_BUCKET": {
"description": "Bucket to fetch assets from."
},
"ASSET_PREFIX": {
"description": "Optional prefix for asset bucket.",
"required": false
}
}
}