strapi/packages/strapi-provider-upload-cloudinary
DMehaffy d864c2c574
Update upload providers README to reflect stable changes (#6709)
Signed-off-by: Derrick Mehaffy <derrickmehaffy@gmail.com>
2020-06-18 09:40:49 +02:00
..
2019-04-16 09:05:47 +02:00
2020-01-08 15:41:08 +01:00
2020-06-16 11:32:23 +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