Giter VIP home page Giter VIP logo

ember-django-adapter's Introduction

Ember Django Adapter

This Ember addon enables the use of Django REST Framework as an API backend. The core functionality of the adapter is in toranb/ember-data-django-rest-adapter. The addon is compatible with ember-cli version 0.1.0 and higher.

Community

Installation

From within your Ember CLI application, run the following:

npm i --save-dev ember-django-adapter

Configuration

In your app settings in config/environment.js, set the hostname for your API, e.g.:

if (environment === 'development') {
  ENV.APP.API_HOST = 'http://localhost:8000';
}

if (environment === 'production') {
  ENV.APP.API_HOST = 'https://api.myproject.org';
  ENV.APP.API_NAMESPACE = '';
}

Configuration Options

  • API_HOST: The server hosting your API (default: None)
  • API_NAMESPACE: Your API namespace (default: 'api')

Extending

Installing the adapter and setting API_HOST should satisfy most requirements, but if you want to add your own customizations:

Custom Adapter

ember generate django-adapter my-custom-adapter

Custom Serializer

ember generate django-serializer my-custom-serializer

For examples extending the adapter, see the cookbook.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.