May 2018
Beginner to intermediate
526 pages
11h 57m
English
Now, let's create our first Django application. We will create a blog application from scratch. From the project's root directory, run the following command:
python manage.py startapp blog
This will create the basic structure of the application, which looks like this:
blog/ __init__.py admin.py apps.py migrations/ __init__.py models.py tests.py views.py
These files are as follows:
Read now
Unlock full access