ParseClient
An Elixir client for the parse.com REST API
Setup
Set your parse.com project settings as environment variables in
config/prod.exs (for production) or config/dev.exs (for development).
# prod.exs
use Mix.Config
config :parse_client,
parse_application_id: my_REST_API_key,
parse_api_key: my_Application_IDInstallation
-
Add parse_elixir_client to your
mix.exsdependencies
defp deps do
[ {:parse_client, "~> 0.1.1-dev"} ]
end-
List
:parse_clientas an application dependency
def application do
[applications: [:logger, :parse_client]]
endGoals
- Develop a full featured REST API for parse.com
- Distribute as a Hex package
- Discover, learn and have fun!
Documentation
Generated docs are hosted on our GitHub page http://elixircnx.github.io/docs/parse_elixir_client
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