A Django app to serve Ember index files deployed with ember-cli-deploy.
-
Install application using
$ pip install django-ember-index
. -
Add
ember_index
to yourINSTALLED_APPS
setting like this:
INSTALLED_APPS = (
...
'ember_index',
)
- Register Ember application(s) at
urls.py
with redis's adapter:
from ember_index import index, RedisAdapter
adapter = RedisAdapter(host='localhost')
urlpatterns = [
index(r'^other/', 'other-app', adapter),
index(r'^', 'my-app', adapter),
]
The provided regex
is used to set router's rootURL by replacing pregenerated baseURL environment configuration at index file.
Note that storeConfigInMeta must be set to true
, otherwise an exception is raised. If base
tag is present in index file, then value of href
attribute will be replaced too.
If CSRF protection is enabled, then meta
tag named X-CSRFToken
with generated token will be provided. You can use Ember Django CSRF to enable protection on the Ember side.
All adapter's keyword arguments will be passed into the StrictRedis object on initialization.
- Access application(s) at:
/
with current revision ofmy-app
,/r/ed54cda/
with specific revision ofmy-app
,/other/
with current revision ofother-app
,/other/r/ed54cda/
with specific revision ofother-app
.
Django Ember Index is available under the MIT license. See the LICENSE file for more info.