Creating a virtual environment
We should not have a virtual environment for our project at this time. If you do have one, go ahead and disregard it and create a new one for this next exercise. Whether you created a project using the Visual Studio IDE or by using the Django commands from a terminal or command-line window in the previous exercises, the file structure in your repository should look like the following tree structure:
├── .git
├── readme.md
├── requirements.txt
├── becoming_a_django_entdev
│ ├── .vs
│ ├── becoming_a_django_entdev.sln
│ ├── db.sqlite3
│ ├── manage.py
│ ├── obj
│ ├── requirements.txt
│ ├── staticfiles
│ └──...