mirror of
https://github.com/avitex/elixir-vultr
synced 2025-11-03 15:43:28 +00:00
Simple wrapper for the Vultr API
Bumps [inch_ex](https://github.com/rrrene/inch_ex) from 0.5.6 to 2.0.0. - [Release notes](https://github.com/rrrene/inch_ex/releases) - [Changelog](https://github.com/rrrene/inch_ex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rrrene/inch_ex/commits/v2.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> |
||
|---|---|---|
| lib | ||
| test | ||
| .gitignore | ||
| .travis.yml | ||
| mix.exs | ||
| mix.lock | ||
| README.md | ||
Vultr
Simple wrapper for the Vultr API.
Documentation hosted on hexdocs.
Installation
Add vultr to your list of dependencies in mix.exs:
def deps do
[{:vultr, "~> 0.3.0"}]
end
Examples
Retrieving app list
Vultr.app_list()
# Example response
{:ok, %{ "1" => %{"APPID" => "1", "deploy_name" => "LEMP on CentOS 6 x64", ... }, ... }}
Using authenticated methods
client = Vultr.client("<APIKEY>")
Vultr.server_list(client, [])