Metadata-Version: 1.1
Name: django-ember-index
Version: 0.1.0
Summary: A Django app to serve an Ember index files.
Home-page: https://github.com/bobisjan/django-ember-index
Author: Jan Bobisud
Author-email: me@bobisjan.com
License: MIT License
Description: # Django Ember Index
        
        A Django app to serve an [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',
          )
          ```
        
        3. 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()),
          ]
          ```
        
          _All keyword arguments will be passed into the [StrictRedis](https://redis-py.readthedocs.org/en/latest/#redis.StrictRedis) object on initialization._
        
        ## 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
