Popularity
2.9
Growing
Activity
0.0
Stable
15
3
3

Monthly Downloads: 14
Programming language: Elixir
License: MIT License
Tags: Third Party APIs    

digitalocean alternatives and similar packages

Based on the "Third Party APIs" category.
Alternatively, view digitalocean alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of digitalocean or a related project?

Add another 'Third Party APIs' Package

README

DigitalOcean Build Status Hex pm

A (WIP) Elixir wrapper for the Digital Ocean API v2. (View Docs)

Installation

  1. Add digitalocean to your list of dependencies in mix.exs:
  def deps do
    [{:digitalocean, "~> 0.1.1"}]
  end
  1. Ensure digitalocean is started before your application:
  def application do
    [applications: [:digitalocean]]
  end
  1. Configure your digitalocean application settings:
  config :digitalocean, token: "YOUR_API_TOKEN"

To Do