vultr-elixir/README.md

36 lines
887 B
Markdown
Raw Permalink Normal View History

2020-04-14 08:36:27 +00:00
[![Build Status](https://travis-ci.com/avitex/elixir-vultr.svg?branch=master)](https://travis-ci.com/avitex/elixir-vultr)
[![Hex.pm](https://img.shields.io/hexpm/v/vultr.svg)](https://hex.pm/packages/vultr)
2017-07-15 14:07:47 +00:00
[![Hex Docs](https://img.shields.io/badge/hex-docs-blue.svg)](https://hexdocs.pm/vultr)
2017-07-15 11:20:25 +00:00
# Vultr
**Simple wrapper for the [Vultr API](https://www.vultr.com/api/).**
Documentation hosted on [hexdocs](https://hexdocs.pm/vultr).
## Installation
Add `vultr` to your list of dependencies in `mix.exs`:
```elixir
def deps do
2017-11-28 06:58:41 +00:00
[{:vultr, "~> 0.3.0"}]
2017-07-15 11:20:25 +00:00
end
```
## Examples
2017-07-15 11:33:29 +00:00
#### Retrieving app list
2017-07-15 11:20:25 +00:00
```elixir
Vultr.app_list()
# Example response
{:ok, %{ "1" => %{"APPID" => "1", "deploy_name" => "LEMP on CentOS 6 x64", ... }, ... }}
2017-07-15 11:20:25 +00:00
```
2017-07-15 11:33:29 +00:00
#### Using authenticated methods
2017-07-15 11:20:25 +00:00
```elixir
client = Vultr.client("<APIKEY>")
Vultr.server_list(client, [])
```