Alexandre-Herve / streamex

A GetStream client for the Elixir language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Streamex Build Status Coverage Status

Streamex is a GetStream client library for the Elixir language.

Documentation

Installation

Add Streamex to your mix.exs file:

def deps do
  [{:streamex, "~> 0.3.0"}]
end

then run mix deps.get to install the library.

Configuration

Ensure Streamex is started before your application:

def application do
  [applications: [:streamex]]
end

Then setup configuration values in your config/[env].exs file:

config :streamex, region: "api_region",
                  key: "api_key",
                  secret: "api_secret"

Usage

Refer to Streamex documentation. Usage examples may be also found in /test folder.

About

A GetStream client for the Elixir language

License:MIT License


Languages

Language:Elixir 100.0%