[READ-ONLY] Mirror of https://github.com/andrioid/s3preview. Preview serving microservice for s3. Generates and uploads any missing thumbnails. Redirects to existing.
0

Configure Feed

Select the types of activity you want to include in your feed.

s3preview / app.json
1.1 kB 38 lines
1{ 2 "name": "s3preview", 3 "description": "Preview serving microservice for s3. Creates and uploads thumbnails as needed.", 4 "repository": "https://github.com/andrioid/s3preview", 5 "logo": "https://node-js-sample.herokuapp.com/node.svg", 6 "keywords": ["go", "golang", "s3", "thumbnails", "microservice"], 7 "env": { 8 "BUILDPACK_URL": { 9 "decription": "Buildpack", 10 "value": "https://github.com/kr/heroku-buildpack-go" 11 }, 12 "AWS_ACCESS_KEY_ID": { 13 "description": "AWS Access Key ID. Needs to be able to READ, WRITE and LIST buckets.", 14 "value": "" 15 }, 16 "AWS_SECRET_ACCESS_KEY": { 17 "description": "AWS Secret Key", 18 "value": "" 19 }, 20 "PREVIEW_BUCKET": { 21 "description": "Bucket to store previews.", 22 "value": "" 23 24 }, 25 "PREVIEW_PREFIX": { 26 "description": "Optional prefix for preview bucket.", 27 "value": "s3preview/", 28 "required": false 29 }, 30 "ASSET_BUCKET": { 31 "description": "Bucket to fetch assets from." 32 }, 33 "ASSET_PREFIX": { 34 "description": "Optional prefix for asset bucket.", 35 "required": false 36 } 37 } 38}