Skip to content

ilanddev/elixir-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Iland

An Elixir SDK for the iland cloud API.

build status Coverage Status license version downloads

Introduction

The iland cloud Elxiir SDK provides a wrapper around the iland cloud API. This libary handles token management as well as reponse handling.

iland cloud provides Enterprise-grade IaaS and this library is intended to make it even easier for Elixir programmers to use.

Installation

The iland package is available on Hex

  1. Add iland to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:iland, "~> 0.1.8"}]
end
```
  1. Ensure iland is started before your application:
```elixir
def application do
  [applications: [:iland]]
end
```
  1. Run $ mix deps.get

Getting the code

The code is hosted at https://github.com/ilanddev/elixir-sdk

Check out the latest development version anonymously with:

$ git clone https://github.com/ilanddev/elixir-sdk
$ cd elixir-sdk