A sample Ember.js client app with registration and login routes and Django REST API backend server made with Django REST framework.
$ virtualenv --python=$(which python3) venv
$ source venv/bin/activate
$ git clone https://github.com/davideferre/django-ember-jwt-tutorial.git
$ cd django-ember-jwt-tutorial
$ pip install -r requirements.txt
$ cd server
$ python3 manage.py migrate
$ python3 manage.py createsuperuser
$ python3 manage.py runserver
In a separate shell:
$ cd client
$ npm install
$ npm start
Run a browser and you can find the front-end app on http://localhost:4200 and the REST API server on http://localhost:8000 with admin dashboard on http://localhost:8000/admin