February 2018
Intermediate to advanced
456 pages
9h 56m
English
Like all the previous chapters, we are going to start off this chapter by setting up the environment that we need to develop our services on. Let's start by creating our working directory:
mkdir microservices && cd microservices
Then, we create our virtual environment with pipenv:
pipenv --python ~/Install/Python3.6/bin/python3.6
With the virtual environment created, we need to install the project dependencies. For this project, we are going to install Django and the Django REST Framework:
pipenv install ...
Read now
Unlock full access