ParseClient
An Elixir client for the parse.com REST API
Installation
-
Add parse_elixir_client to your
mix.exsdependencies
defp deps do
[ {:parse_client, "~> 0.2.2"} ]
end-
List
:parse_clientas an application dependency
def application do
[applications: [:logger, :parse_client]]
end-
Run
mix do deps.get, compile
Setup
Uncomment
import_config "#{Mix.env}.exs"inconfig/config.exsCreate environment files
config/prod.exs(for production),config/dev.exs(for development) andconfig/test.exsConfigure 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
- Fork it
-
Create your feature branch (
git checkout -b my-new-feature) -
Commit your changes (
git commit -am 'Add some feature') -
Push to the branch (
git push origin my-new-feature) - Create new Pull Request
Status
This client is alpha status. It needs more testing at the production-level, and so we encourage you to try it out and give us your feedback.
License
MIT