/elixir-bot-builder

Unofficial SDK for Microsoft Bot Builder using Elixir & Phoenix.

Primary LanguageElixirMIT LicenseMIT

BotBuilder

Unofficial Microsoft Bot Builder SDK for Elixir.

Installation

If available in Hex, the package can be installed as:

  1. Add botbuilder to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:botbuilder, "~> 0.1.0"}]
end
```
  1. Ensure botbuilder is started before your application:
```elixir
def application do
  [applications: [:botbuilder]]
end
```