Share images on deployd

I recently started experimenting with Deployd . It (sort of) looks like a meteor .

This may be an amateurish question, but what happens if my collection consists of images?

How to upload it to MongoDB @deployd dashboard?

+4
source share
2 answers

The only real way to use the collection resource type to do this right now is for base64 to encode the image and save it as a string property. However, there are some performance limitations and performance issues with base64 images. In addition, @dallonf created the Amazon S3 resource to simplify the integration of deployd applications with S3. http://docs.deployd.com/docs/using-modules/official/s3.md

There have been many requests for storing binary files in collections, and I hope someone (the main committer or otherwise) can work on this after the upcoming deployd version, which includes significant improvements to the module API. This Github question is worth a look: https://github.com/deployd/deployd/issues/106

+6
source

I created a deployment module for uploading files (including images).
https://github.com/NicolasRitouet/dpd-fileupload
It allows you to store files in a local folder and in a collection for their request.

+7
source

All Articles