Django-Ionic-Integration
                                
                                 Django-Ionic-Integration copied to clipboard
                                
                                    Django-Ionic-Integration copied to clipboard
                            
                            
                            
                        Section 3 of the Django + Angular + Ionic Course
Django + Ionic Integration
Building on top of Section 2 Angular Integration(repo), we learn how to integrate a Django project with the Ionic Framework.
Pulling this project?
Install node packages
$ mkdir tryIonic
$ cd try Ionic
$ mkdir cfeApp
$ cd cfeApp
$ git clone https://github.com/codingforentrepreneurs/Django-Ionic-Integration .
$ npm install
$ ionic serve
A Fresh Install of the Django Backend (For Lesson 17)
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
