mmcnellis / excourse

Discourse api in elixir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Travis Build Status Circle Inline docs

Excourse

A simple Discourse API

Installation

  1. Add excourse to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:excourse, git: "https://github.com/ulve/excourse.git"}]
end
```
  1. Ensure excourse is started before your application:
```elixir
def application do
  [applications: [:excourse]]
end
```

Config

The following config must be set

config :excourse, api_key: "CHANGE ME"
config :excourse, api_username: "CHANGE ME"
config :excourse, discourse_url: "CHANGE ME" 

About

Discourse api in elixir

License:MIT License


Languages

Language:Elixir 77.6%Language:Shell 22.4%