strapi/packages/strapi-provider-upload-cloudinary
Alexandre Bodin a22baf9a0d Fix peer deps
Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
2020-09-30 12:46:05 +02:00
..
2020-09-29 12:00:25 +02:00
2018-10-19 09:26:09 +02:00
2018-10-19 09:26:09 +02:00
2019-04-16 09:05:47 +02:00
2018-10-19 09:26:09 +02:00
2020-07-08 09:45:28 +02:00
2020-09-30 12:46:05 +02:00
2020-07-20 18:40:52 +02:00

strapi-provider-upload-cloudinary

Configurations

Your configuration is passed down to the cloudinary configuration. (e.g: cloudinary.config(config)). You can see the complete list of 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'),
    },
  },
  // ...
});

Resources