August 2016
Beginner to intermediate
717 pages
15h 24m
English
In this chapter, we will not actually start with the development phase. Instead, we will study the basics of websites to learn Django, namely, the project and application creation. In this chapter, we will also:
At the end of the chapter, we will have created our first web page that will display Hello World!.
In the previous chapter, we edited the settings.py file to configure our Django project. We will edit settings.py again to add a new parameter. The following line must be present in settings.py:
ROOT_URLCONF = 'Work_manager.urls'
This parameter will define the Python file that will contain all ...
Read now
Unlock full access