Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukeed/elixir-digitalocean
(WIP) Elixir wrapper for the Digital Ocean API v2.
https://github.com/lukeed/elixir-digitalocean
Last synced: 3 days ago
JSON representation
(WIP) Elixir wrapper for the Digital Ocean API v2.
- Host: GitHub
- URL: https://github.com/lukeed/elixir-digitalocean
- Owner: lukeed
- Created: 2016-07-19T16:42:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-05T04:37:52.000Z (about 8 years ago)
- Last Synced: 2024-05-02T11:12:41.632Z (6 months ago)
- Language: Elixir
- Homepage:
- Size: 50.8 KB
- Stars: 15
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Elixir wrapper for the Digital Ocean API v2. (Third Party APIs)
- fucking-awesome-elixir - digitalocean - Elixir wrapper for the Digital Ocean API v2. (Third Party APIs)
- awesome-elixir - digitalocean - Elixir wrapper for the Digital Ocean API v2. (Third Party APIs)
README
# DigitalOcean [![Build Status](https://travis-ci.org/lukeed/elixir-digitalocean.svg?branch=master)](https://travis-ci.org/lukeed/elixir-digitalocean) [![Hex pm](http://img.shields.io/hexpm/v/digitalocean.svg?style=flat)](https://hex.pm/packages/digitalocean)
> A (WIP) Elixir wrapper for the Digital Ocean API v2. ([View Docs](https://hexdocs.pm/digitalocean/))
## Installation
1. Add `digitalocean` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:digitalocean, "~> 0.1.1"}]
end
```2. Ensure `digitalocean` is started before your application:
```elixir
def application do
[applications: [:digitalocean]]
end
```3. Configure your `digitalocean` application settings:
```elixir
config :digitalocean, token: "YOUR_API_TOKEN"
```## To Do
- [x] The [Droplet](https://developers.digitalocean.com/documentation/v2/#droplets) module.
- [x] The [Droplet Action](https://developers.digitalocean.com/documentation/v2/#droplet-actions) module.
- [x] The [Floating IP](https://developers.digitalocean.com/documentation/v2/#floating-ips) module.
- [x] The [Floating IP Action](https://developers.digitalocean.com/documentation/v2/#floating-ip-actions) module.
- [x] The [Image](https://developers.digitalocean.com/documentation/v2/#images) module.
- [x] The [Image Action](https://developers.digitalocean.com/documentation/v2/#image-actions) module.
- [x] The [Tag](https://developers.digitalocean.com/documentation/v2/#tags) module.
- [ ] Add `@doc`-based tests
- [ ] Add all method documentation