Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fbettag/rrpproxy.ex
Implements the RRPproxy.net API for registering domains in Elixir
https://github.com/fbettag/rrpproxy.ex
elixir rrpproxy
Last synced: about 1 month ago
JSON representation
Implements the RRPproxy.net API for registering domains in Elixir
- Host: GitHub
- URL: https://github.com/fbettag/rrpproxy.ex
- Owner: fbettag
- License: mit
- Created: 2019-12-03T15:59:35.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-24T22:30:04.000Z (almost 4 years ago)
- Last Synced: 2024-09-20T09:40:08.654Z (3 months ago)
- Topics: elixir, rrpproxy
- Language: Elixir
- Homepage: https://hexdocs.pm/rrpproxy
- Size: 90.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RRPproxy
This package implements the [RRPproxy.net](https://rrpproxy.net) API for registering domains with Elixir.
If you need more of their API, just launch a Pull Request.
## Installation
This package can be installed by adding `rrpproxy` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:rrpproxy, "~> 0.1.7"}
]
end
```## Configuration
Put the following lines into your `config.exs` or better, into your environment
configuration files like `test.exs`, `dev.exs` or `prod.exs`.```elixir
config :rrpproxy,
username: "",
password: "",
ote: true
```## Documentation
Documentation can be found at [https://hexdocs.pm/rrpproxy](https://hexdocs.pm/rrpproxy).