Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Latest commit

 

History

History
51 lines (35 loc) · 951 Bytes

README.md

File metadata and controls

51 lines (35 loc) · 951 Bytes
id title description
getting-started
Getting Started
Elixir Client Library For Communicating With Core Server Public REST API

Client

Install packages with mix

The package can be installed by adding arkecosystem_client to your list of dependencies in mix.exs:

def deps do
  {:arkecosystem_client, "~> 1.0"}
end

Once installed, you should run the following command to install the dependencies :

mix deps.get

Development

  1. Fork the package.

  2. Clone your forked repository.

    git clone https://github.com/<githubusername>/elixir-client
  3. Next, move into the fresh cloned directory.

    cd elixir-client
  4. Install the dependencies.

    mix deps.get
  5. Dependencies are now installed, you can now run the tests to see if everything is running as it should.

    mix test