ExCloudinary

Elixir client for Cloudinary

Config

You need to add the following config in your config.exs:

config :ex_cloudinary,
cloud_name: "",
api_key: "",
api_secret: ""

Installation

If available in Hex, the package can be installed as:

  1. Add ex_cloudinary to your list of dependencies in mix.exs:

    def deps do [{:ex_cloudinary, "~> 0.0.1"}] end

  2. Ensure ex_cloudinary is started before your application:

    def application do [applications: [:ex_cloudinary]] end