Building on top of Section 2 Angular Integration(repo), we learn how to integrate a Django project with the Ionic Framework.
$ mkdir tryIonic
$ cd try Ionic
$ mkdir cfeApp
$ cd cfeApp
$ git clone https://github.com/codingforentrepreneurs/Django-Ionic-Integration .
$ npm install
$ ionic serve
This backend was built in our Rest API course.
$ mkdir dev
$ cd dev
$ mkdir backend
$ cd backend
$ git clone https://github.com/codingforentrepreneurs/Django-Angular-Ionic/ .
$ git reset 65f74b19ea8e43a5b001a100a0fb151c8265892f --hard
$ rm -rf .git
$ pipenv install --python python3.6
$ pipenv install -r requirements.txt
$ pipenv install django-cors-headers
$ pipenv install coreapi
$ pipenv shell
$ cd src
$ python manage.py runserver