Popularity
2.2
Stable
Activity
0.0
Stable
4
1
5

Monthly Downloads: 8
Programming language: Elixir
License: MIT License
Tags: Third Party APIs    

parse_client alternatives and similar packages

Based on the "Third Party APIs" category.
Alternatively, view parse_client alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of parse_client or a related project?

Add another 'Third Party APIs' Package

README

ParseClient Build Status Hex.pm Version

An Elixir client for the parse.com REST API

Installation

  1. Add parse_elixir_client to your mix.exs dependencies
  defp deps do
    [ {:parse_client, "~> 0.3"} ]
  end
  1. List :parse_client as an application dependency
  def application do
    [applications: [:logger, :parse_client]]
  end
  1. Run mix do deps.get, compile

Setup

  1. Uncomment import_config "#{Mix.env}.exs" in config/config.exs

  2. Create environment files config/prod.exs (for production), config/dev.exs (for development) and config/test.exs

  3. Configure parse_client with your parse.com Application ID and API key

Use system variables (preferred)

  # prod.exs

  use Mix.Config

  config :parse_client,
    parse_application_id: System.get_env("PARSE_APPLICATION_ID"),
    parse_api_key: System.get_env("PARSE_API_KEY")

Or use them explicitly

  # prod.exs

  use Mix.Config

  config :parse_client,
    parse_application_id: "my_Application_ID",
    parse_api_key: "my_REST_API_key"

Documentation

http://hexdocs.pm/parse_client

Goals

  • Develop a full featured REST API for parse.com
  • Discover, learn and have fun!

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Status

This client needs more testing at the production-level, and so we encourage you to try it out and give us your feedback.

License

MIT


*Note that all licence references and agreements mentioned in the parse_client README section above are relevant to that project's source code only.