Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pinx/fulcrum

Elixir library for the Fulcrum API
https://github.com/pinx/fulcrum

Last synced: about 2 months ago
JSON representation

Elixir library for the Fulcrum API

Awesome Lists containing this project

README

        

# Fulcrum

Fulcrum library for Elixir.

The aim is to present the Fulcrum API as a replacement for the Ecto Repo.

So, instead of Repo.all(Form), you can write Fulcrum.all(Form). In this way, you only have to make minor changes to your controllers, to work with Fulcrum.

## Installation

Add fulcrum to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:fulcrum, "~> 0.0.1"}]
end
```

Ensure fulcrum is started before your application:

```elixir
def application do
[applications: [:fulcrum]]
end
```

Add your Fulcrum api-key to your config file

```elixir
use Mix.Config
config :fulcrum,
api_key: ""
```

## Usage

The following resources are available (checked ones have been implemented):

- [ ] Users (only "all")
- [x] Memberships (only "all")
- [x] Forms
- [x] FormMemberships (only "insert!")
- [x] Records
- [ ] Choice Lists
- [ ] Classification Sets
- [ ] Change Sets (coming from mobile device)

The following functions are implemented:
- [x] all/1
- [x] get!/1
- [ ] get/1
- [x] insert!/1
- [ ] insert/1
- [x] update!/1
- [ ] update/1
- [x] delete!/1
- [x] delete!/2
- [ ] delete/1

## Credits

[Fabriquartz] (https://github.com/Fabriquartz)