strapi-provider-upload-cloudinary-large

1.0.2 • Public • Published

strapi-provider-upload-cloudinary

Upload large files support

This is a fork from the original strapi cloudinary plugin, modified to support uploading large files to cloudinary.

You need to make sure your cloudinary plan supports larger files upload as well.

Configurations

Your configuration is passed down to the cloudinary configuration. (e.g: cloudinary.config(config)). You can see the complete list of options here

actionOptions are passed directly to the upload and delete functions respectively allowing for custom options such as folder, type, etc. You can see the complete list of upload options here and delete options here

See the using a provider documentation for information on installing and using a provider. And see the environment variables for setting and using environment variables in your configs.

Example

./config/plugins.js

module.exports = ({ env }) => ({
  // ...
  upload: {
    provider: 'cloudinary',
    providerOptions: {
      cloud_name: env('CLOUDINARY_NAME'),
      api_key: env('CLOUDINARY_KEY'),
      api_secret: env('CLOUDINARY_SECRET'),
    },
    actionOptions: {
      upload: {},
      delete: {},
    },
  },
  // ...
});

Resources

Links

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i strapi-provider-upload-cloudinary-large

    Weekly Downloads

    3

    Version

    1.0.2

    License

    SEE LICENSE IN LICENSE

    Unpacked Size

    6.67 kB

    Total Files

    4

    Last publish

    Collaborators

    • mohamadfala