Elixir client for Cloudinary
You need to add the following config in your config.exs:
config :ex_cloudinary,
name: "",
api_key: "",
api_secret: ""
If available in Hex, the package can be installed as:
-
Add ex_cloudinary to your list of dependencies in
mix.exs:def deps do [{:ex_cloudinary, "~> 0.0.1"}] end
-
Ensure ex_cloudinary is started before your application:
def application do [applications: [:ex_cloudinary]] end