Anthony Manzo
Anthony Manzo
HI Perak, I think we’ll need to add a few things: 1. An area to define bucket, ‘store’ and any transform options information in your collection def. (disregard the accesskey...
Awesome, I’ll give a try when it’s deployed. Thanks. On Jan 24, 2017, at 2:45 PM, Petar Korponaić wrote: @anthonymanzo OK, in next version 0.9.78 I added this: Storage adapters...
Storage adapter code is now showing up in the subscriptions - thanks. Minor problem, I can't render the images with the data-view component - I need a way to return...
Hi, Just wanted to give an update that I haven't been able to test this as I'm having trouble with the latest version of cfs:s3 not working for me, I...
Hi, another comment on this. Got it working (more or less) and want to know how to define multiple stores for a collection (ie a largthumb, smallthumb set). Any ideas?
Here's my code. Kitchen generator is only picking up the first store: "collections" : [ { "name": "employee_thumbs", "type": "file_collection", "storage_adapter_options": { "s3": { "bucket": "salk-saw-assets", "folder":"thumbs", "transformWrite":"function(fileObj, readStream, writeStream)...
Meet too!
Hi, I feel your pain, was in a similar sitch and developed a good enuff solution. I ended up using peerlibrary/meteor-aws-sdk to load the data into a cfs:s3 store. Here...
btw, EmployeeThumbs looks like this: `this.EmployeeThumbs = new FS.Collection("employee_thumbs", { stores: [new FS.Store.S3("employee_thumbs", { bucket: "salk-saw-assets", folder: "thumbs", transformWrite: "createThumb", accessKeyId: "xxx", secretAccessKey: "xxx" })] });`
Hi, I tried your suggestion and still no data. Question, is it possible to use cfs:s3 on data that is already in a bucket? Or, do I have to use...