Can I upload media files larger than 10Mb?
makunomark opened this issue · 3 comments
@makunomark
To support larger files you should change FILE_SIZE_MAX
value in a ConnectConstants.js
, and set same value to maxUploadSize
param in config.json
of chisel-parse-server.
But you should bear in mind that Parse-server is not intended to operate with large files. Maybe we'll include an Amazon S3 adapter to use it to keep large files in near future.
@Nes-si Thank you. Changing FILE_SIZE_MAX
in ConnectConstants.js
worked. I am using a "stand alone" version of parse-server
, specifically a clone of parse-server-example. I ended up setting up an Amazon S3 adapter. Everything works as expected. I don't mind spending a weekend including Amazon s3 adapter to chisel-parse-server
.
This solution worked, ill close this issue