Posts

Showing posts from July, 2018

Monolithic vs Micro Services

Monolithic : Developing and maintaining   the whole application into a Single unit. Micro Services : Developing and maintaining individual services and   deploying as single application using light weight protocols for communication. Feature Monolithic Micro Services Language Constraint We have to write entire application in a single language. Micro services can be developed using multiple languages. We can go with multiple persistent databases and frameworks which is best suitable for a business need.   Digestion It is not possible one developer to digest all the modules in the entire application. Micro services are pieces of application. So, digestion is not a problem. Developer can easily concentrate on the assigned service only. Deployment Deployment is easy but we have to deploy the entire application for a small change. Micro serv...

Python and DJango Installation

Image
 Python and DJango Installation Steps Download Python latest version which is compatible to your OS. And then follow below commands through Windows Powershell > pip install virtualenvwrapper-win   -- To install virtual environment > mkvirtualenv myproject   -- create Project you virtual Environment > workon myproject   -- to shift and work on your project > pip install django  -- Install Django using pip > python -m django --version  -- to check installed Django version To create your project                               PS >  django-admin startproject myfirst To run python server                               PS >  python manage.py runserver To apply those changes to the database.     ...