Metadata-Version: 1.1
Name: django-ember-index
Version: 0.2.0
Summary: A Django app to serve Ember index files.
Home-page: http://bobisjan.com/django-ember-index
Author: Jan Bobisud
Author-email: me@bobisjan.com
License: MIT License
Description: # Django Ember Index
        
        [![Build Status](https://travis-ci.org/bobisjan/django-ember-index.svg?branch=master)](https://travis-ci.org/bobisjan/django-ember-index) [![Code Climate](https://codeclimate.com/github/bobisjan/django-ember-index/badges/gpa.svg)](https://codeclimate.com/github/bobisjan/django-ember-index) [![Coverage Status](https://coveralls.io/repos/bobisjan/django-ember-index/badge.svg?branch=master)](https://coveralls.io/r/bobisjan/django-ember-index) [![Requirements Status](https://requires.io/github/bobisjan/django-ember-index/requirements.svg?branch=master)](https://requires.io/github/bobisjan/django-ember-index/requirements/?branch=master)
        
        A Django app to serve [Ember](http://emberjs.com) index files deployed with [ember-cli-deploy](https://github.com/ember-cli/ember-cli-deploy).
        
        ## Installation
        
        1. Install application using `$ pip install django-ember-index`.
        
        2. Add `ember_index` to your `INSTALLED_APPS` setting like this:
        
          ```python
          INSTALLED_APPS = (
              ...
              'ember_index',
          )
          ```
        
        ## Usage
        
        1. Register Ember application at `urls.py` with [redis](http://redis.io)'s adapter:
        
          ```python
          from ember_index.adapters import RedisAdapter
          from ember_index.conf.urls import index
        
          urlpatterns = [
              index(r'^', 'my-app', RedisAdapter(host='localhost')),
          ]
          ```
        
          _All keyword arguments will be passed into the [StrictRedis](https://redis-py.readthedocs.org/en/latest/#redis.StrictRedis) object on initialization._
        
        2. Access application at:
        
          - `/` with current revision,
          - `/r/ed54cda` with specific revision.
        
        ## License
        
        Django Ember Index is available under the MIT license. See the LICENSE file for more info.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
