This Django application is powered by gunicorn and nginx
I used Ubuntu 16
Before using this make sure you install the following
1.] sudo apt-get install python-pip
-what it does it install python pip then you can now start using pip
2.] pip install django==1.10 # I specified the version if it is blank then the latest version will be installed
3.] pip freeze > requirements.txt # store a textfile of installed app
4.] Inside my application I created mine
5.] I can now pip install -r requirements.txt # will install any application written inside requirements.txt