Installation

Install Django-Angular. The latest stable release can be found on PyPI

pip install django-angular

or the newest development version from GitHub

pip install -e git+https://github.com/jrief/django-angular#egg=django-angular

Dependencies

Configuration

Add 'djng' to the list of INSTALLED_APPS in your project’s settings.py file

INSTALLED_APPS = (
    ...
    'djng',
    ...
)

Please don’t forget to define your STATIC_ROOT and STATIC_URL properly, then launch the python manage.py collectstatic command to update your static content with the JavaScript files provided by django-angular.

Note

django-angular does not define any database models. It can therefore easily be installed without any database synchronization.